From 6515dee8715d8571ea19484a7dfab7cfd0cc40be Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Sun, 17 Nov 2019 11:51:50 +0200 Subject: [PATCH] feat: commit media with post (#2851) * feat: commit media with post - initial commit * feat: add draft media indication * feat: sync UI media files with GitHub on entry load * feat: bug fixes * feat: delete media files from github when removed from library * test: add GitHub backend tests * test: add unit tests * fix: meta data object files are not updated * feat: used nested paths when update a tree instead of recursion * feat(test-backend): update test backend to persist media file with entry * test(e2e): re-record fixtures data * chore: code cleanup * chore: code cleanup * fix: wait for library to load before adding entry media files * chore: code cleanup * fix: don't add media files on entry when not a draft * fix: sync media library after draft entry was published * feat: update media library card draft style, add tests * test: add Editor unit tests * chore: test code cleanup * fix: publishing an entry from workflow tab throws an error * fix: duplicate media files when using test backend * refactor: fix lodash import * chore: update translations and yarn file after rebase * test(cypress): update recorded data * fix(test-backend): fix mapping of media files on publish --- ...ng__can change entry status from fork.json | 1049 ++---- ...uthoring__can create an entry on fork.json | 819 ++--- ...- Open Authoring__can create an entry.json | 797 ++--- ...ng__can delete review entry from fork.json | 1186 +++---- ...n publish an editorial workflow entry.json | 1104 ++---- ...n return entry to draft and delete it.json | 1502 +++----- ...ing__can update a draft entry on fork.json | 1801 +++------- ...- Open Authoring__can update an entry.json | 1594 +++------ ...ccessfully forks repository and loads.json | 262 +- ... - Open Authoring__successfully loads.json | 181 +- ...tatus on and publish multiple entries.json | 2686 +++++---------- ...aphQL API__can change workflow status.json | 1544 +++------ ...ow - GraphQL API__can create an entry.json | 839 ++--- ...ow - GraphQL API__can delete an entry.json | 845 ++--- ...n publish an editorial workflow entry.json | 1126 ++---- ...ow - GraphQL API__can update an entry.json | 1793 ++++------ ...orkflow status from within the editor.json | 1316 +++---- ...low - GraphQL API__successfully loads.json | 267 +- ...ng__can change entry status from fork.json | 981 ++---- ...uthoring__can create an entry on fork.json | 798 ++--- ...- Open Authoring__can create an entry.json | 901 ++--- ...ng__can delete review entry from fork.json | 1177 +++---- ...n publish an editorial workflow entry.json | 1054 +++--- ...n return entry to draft and delete it.json | 1271 +++---- ...ing__can update a draft entry on fork.json | 1944 ++++------- ...- Open Authoring__can update an entry.json | 1974 ++++------- ...ccessfully forks repository and loads.json | 540 ++- ... - Open Authoring__successfully loads.json | 191 +- ...tatus on and publish multiple entries.json | 3063 ++++++----------- ... REST API__can change workflow status.json | 1411 ++++---- ...kflow - REST API__can create an entry.json | 803 ++--- ...kflow - REST API__can delete an entry.json | 1077 +++--- ...n publish an editorial workflow entry.json | 1334 +++---- ...kflow - REST API__can update an entry.json | 2042 +++++------ ...orkflow status from within the editor.json | 1100 ++---- ...rkflow - REST API__successfully loads.json | 273 +- package.json | 3 +- .../netlify-cms-backend-github/src/API.js | 189 +- .../src/__tests__/API.spec.js | 282 +- .../src/__tests__/implementation.spec.js | 176 + .../src/implementation.js | 66 +- .../src/implementation.js | 41 +- .../src/__tests__/backend.spec.js | 272 +- .../__tests__/editorialWorkflow.spec.js | 230 ++ .../src/actions/__tests__/entries.spec.js | 188 +- .../actions/__tests__/mediaLibrary.spec.js | 264 +- .../src/actions/editorialWorkflow.js | 88 +- .../netlify-cms-core/src/actions/entries.js | 84 +- .../netlify-cms-core/src/actions/media.js | 5 + .../src/actions/mediaLibrary.js | 119 +- .../netlify-cms-core/src/actions/waitUntil.js | 9 + packages/netlify-cms-core/src/backend.js | 23 +- .../src/components/Editor/Editor.js | 25 +- .../Editor/__tests__/Editor.spec.js | 247 ++ .../__snapshots__/Editor.spec.js.snap | 45 + .../components/MediaLibrary/MediaLibrary.js | 3 +- .../MediaLibrary/MediaLibraryCard.js | 20 +- .../MediaLibrary/MediaLibraryCardGrid.js | 5 + .../MediaLibrary/MediaLibraryModal.js | 1 + .../__tests__/MediaLibraryCard.spec.js | 47 + .../MediaLibraryCard.spec.js.snap | 211 ++ .../src/reducers/__tests__/entryDraft.spec.js | 95 +- .../reducers/__tests__/mediaLibrary.spec.js | 67 + .../src/reducers/__tests__/medias.spec.js | 25 + .../src/reducers/entryDraft.js | 44 +- .../src/reducers/mediaLibrary.js | 12 +- .../netlify-cms-core/src/reducers/medias.js | 9 +- .../src/valueObjects/AssetProxy.js | 2 +- packages/netlify-cms-locales/src/de/index.js | 3 + packages/netlify-cms-locales/src/en/index.js | 3 + packages/netlify-cms-locales/src/fr/index.js | 3 + packages/netlify-cms-ui-default/src/styles.js | 2 + .../src/__tests__/number.spec.js | 4 +- .../src/__tests__/relation.spec.js | 4 +- .../src/__tests__/select.spec.js | 4 +- setupTestFramework.js | 1 + yarn.lock | 117 +- 77 files changed, 17692 insertions(+), 27991 deletions(-) create mode 100644 packages/netlify-cms-core/src/actions/__tests__/editorialWorkflow.spec.js create mode 100644 packages/netlify-cms-core/src/actions/waitUntil.js create mode 100644 packages/netlify-cms-core/src/components/Editor/__tests__/Editor.spec.js create mode 100644 packages/netlify-cms-core/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap create mode 100644 packages/netlify-cms-core/src/components/MediaLibrary/__tests__/MediaLibraryCard.spec.js create mode 100644 packages/netlify-cms-core/src/components/MediaLibrary/__tests__/__snapshots__/MediaLibraryCard.spec.js.snap create mode 100644 packages/netlify-cms-core/src/reducers/__tests__/mediaLibrary.spec.js create mode 100644 packages/netlify-cms-core/src/reducers/__tests__/medias.spec.js diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json index d8d500af..5129da9a 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:43 GMT", + "Date": "Sun, 17 Nov 2019 07:47:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDE:3ED7B:1201B12:15DD938:5D77A636", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E5:470CB:2C7204A:349AE45:5DD0FB23", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:43 GMT", + "Date": "Sun, 17 Nov 2019 07:47:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,57 +53,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE0:B4DC:A7D513:CC174A:5D77A637", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E9:34217:22CB758:29571BD:5DD0FB24", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568126016", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE2:244E7:1148250:1514EA0:5D77A637", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:32:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:45 GMT", + "Date": "Sun, 17 Nov 2019 07:47:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6406e2f1c138e4d3c69a1fea4d3f3ebb\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"e4c48cbad86ccc05787a8c47adf744d6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -116,11 +85,70 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE6:2B1F:11C965A:15B2A3F:5D77A638", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EE:8070:225B772:28CD606:5DD0FB24", + "content-length": "22145" }, - "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:32:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:46:10Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Sun, 17 Nov 2019 07:47:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18F3:470CB:2C72285:349B0F0:5DD0FB25" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:46:10Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 07:47:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e4c48cbad86ccc05787a8c47adf744d6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18FB:8070:225B8BA:28CD77D:5DD0FB26", + "content-length": "22145" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:46:10Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:47:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { @@ -128,7 +156,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:45 GMT", + "Date": "Sun, 17 Nov 2019 07:47:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -137,8 +165,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -148,9 +176,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BEA:2B24:1749627:1C4D9EF:5D77A639", - "content-length": "176", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FC:34217:22CB99C:295747B:5DD0FB26", + "content-length": "176" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -160,7 +187,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:46 GMT", + "Date": "Sun, 17 Nov 2019 07:47:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -169,8 +196,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -180,19 +207,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BEC:9D21:16C574F:1BBB84A:5D77A63A", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FE:1C993:2CB934F:350E370:5DD0FB27", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -201,8 +227,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -212,11 +238,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BEE:1510E:A863D4:CD1A7E:5D77A63A", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FF:2E3EE:229F53E:29190DE:5DD0FB28", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -224,7 +249,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -233,8 +258,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -244,11 +269,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF0:2B1F:11C996E:15B2E11:5D77A63A", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1901:34217:22CBA80:2957590:5DD0FB28", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNDI3Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -256,7 +280,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -265,8 +289,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -276,11 +300,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BFA:15110:1807203:1D2E665:5D77A63B", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190A:470C7:14903DB:183E41E:5DD0FB28", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -288,7 +311,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -297,8 +320,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -308,43 +331,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF6:1510B:6A12A:8369B:5D77A63B", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1907:8070:225BAE1:28CDA0E:5DD0FB28", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:47 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF2:1510F:11D3601:15A0223:5D77A63B", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -352,7 +342,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:48 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -361,8 +351,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -372,11 +362,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF4:B4DC:A7D91E:CC1C16:5D77A63B", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1906:23E1B:2DE1972:365EACF:5DD0FB28", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -384,7 +373,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:48 GMT", + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -393,8 +382,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -404,29 +393,59 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A02:244EB:17909C3:1C9CD54:5D77A63B", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3F0:2F42092:37E6AC2:5DD0FB28", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:47:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1905:470C9:221ED6D:288A14A:5DD0FB28", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:52 GMT", + "Date": "Sun, 17 Nov 2019 07:47:56 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "468", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b7953b5b2815d858dd0f67d5cce660774d85827b\"", - "Last-Modified": "Tue, 10 Sep 2019 13:32:27 GMT", + "ETag": "\"f8668de022cff09619d7e3bd10916c9b1e37fdae\"", + "Last-Modified": "Sun, 17 Nov 2019 07:46:03 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -438,8 +457,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB8:244E7:1148B45:1515A0D:5D77A63F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191E:2E3F0:2F42496:37E6FB2:5DD0FB2C" }, "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 @@ -449,7 +467,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:52 GMT", + "Date": "Sun, 17 Nov 2019 07:47:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -458,8 +476,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -469,11 +487,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BBA:B4DC:A7DDF8:CC21FC:5D77A640", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1924:8072:2D73EFC:35F88D3:5DD0FB2C", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -481,7 +498,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:53 GMT", + "Date": "Sun, 17 Nov 2019 07:47:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -490,8 +507,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -501,11 +518,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BBC:2B24:174A11D:1C4E7E8:5D77A641", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1929:8072:2D73FF5:35F8A01:5DD0FB2D", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -513,17 +529,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:54 GMT", + "Date": "Sun, 17 Nov 2019 07:47:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e534bfcd1b6dc6f9245f32d16a0c64c9\"", + "ETag": "\"4fb898f9e4ad7b76619653a9688a2b6c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -536,8 +552,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBE:15110:1807CB7:1D2F3B1:5D77A641", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192A:34216:12EC402:166EC26:5DD0FB2E" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -547,7 +562,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:54 GMT", + "Date": "Sun, 17 Nov 2019 07:47:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -556,8 +571,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -567,292 +582,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BC0:1510F:11D3EF3:15A0D37:5D77A642", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192E:1C985:130FA9B:16A7BC2:5DD0FB2F", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BC2:B4E0:163F2B0:1B125CB:5D77A643", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BC4:9D21:16C63BD:1BBC80E:5D77A643", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BC6:3ED82:18011AC:1D31CC8:5D77A643", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BC8:2B15:4BFF37:5C3540:5D77A643", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BCC:9D1F:9EDA3C:C1D5EB:5D77A644", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BCA:2B24:174A5FB:1C4EE33:5D77A644", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:58 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568126016", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f0da3cfe1d93508ff3394044fecf0870\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCE:1510B:6A198:83724:5D77A645", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568126016", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2a4689a3495349436da3f799f67c3aa9\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD0:2B24:174A8DD:1C4F1E3:5D77A646", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:59 GMT", + "Date": "Sun, 17 Nov 2019 07:48:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f36a35e8ea247dd844853de0d6154f29\"", + "ETag": "\"d5ce5b24c947cb2644dfcbbce4ce120c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -862,31 +616,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD2:244E7:114943E:1516549:5D77A647", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1933:34217:22CC038:2957C83:5DD0FB2F" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:00 GMT", + "Date": "Sun, 17 Nov 2019 07:48:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d91b082739c2a16f07a7c7b9db4b7735\"", + "ETag": "\"fae2711606778e8f6a9132881c78e779\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/563352ca4661311a681929e5d20381f1266d49e5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -896,18 +649,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD4:15110:180872A:1D300D5:5D77A648", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470CB:2C72D0B:349BDCA:5DD0FB30" }, - "response": "{\n \"sha\": \"794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:00Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:00Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"563352ca4661311a681929e5d20381f1266d49e5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjU2MzM1MmNhNDY2MTMxMWE2ODE5MjllNWQyMDM4MWYxMjY2ZDQ5ZTU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/563352ca4661311a681929e5d20381f1266d49e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/563352ca4661311a681929e5d20381f1266d49e5\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:00Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:00Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"563352ca4661311a681929e5d20381f1266d49e5\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:02 GMT", + "Date": "Sun, 17 Nov 2019 07:48:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -916,8 +668,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -927,28 +679,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BD6:15110:1808908:1D30329:5D77A649", - "content-length": "604", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1939:1C993:2CB9F8C:350F243:5DD0FB31", + "content-length": "604" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjU2MzM1MmNhNDY2MTMxMWE2ODE5MjllNWQyMDM4MWYxMjY2ZDQ5ZTU=\",\"sha\":\"563352ca4661311a681929e5d20381f1266d49e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:03 GMT", + "Date": "Sun, 17 Nov 2019 07:48:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4ee0d5cc2133d4feff0de1d7644813e1\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"f78ad7553db43e9d9f2dbadf224632a1\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -961,11 +712,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD8:244E7:11498D6:1516B1D:5D77A64A", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1945:8072:2D747BF:35F9330:5DD0FB32", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\"\n }\n}\n", "status": 200 }, { @@ -973,20 +723,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:04 GMT", + "Date": "Sun, 17 Nov 2019 07:48:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"54f6490b9715c8c0813a4ff80c9f09f4\"", + "ETag": "\"0de4b1230340abf262b4f0acbfcdace8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -996,95 +746,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDA:1510F:11D4B59:15A1C84:5D77A64B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1947:8070:225C570:28CE69F:5DD0FB32" }, - "response": "{\n \"sha\": \"b7953b5b2815d858dd0f67d5cce660774d85827b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b\"\n}\n", + "response": "{\n \"sha\": \"f8668de022cff09619d7e3bd10916c9b1e37fdae\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BDE:3ED82:1802033:1D32EDE:5D77A64C", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjJiYjk4ZTFiOTkzMjVmMDY5MzU2ZmI4NzMxZmFlNDFiMDkzZTFiYmM=\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BDC:1510F:11D4C96:15A1E0C:5D77A64C", - "content-length": "685", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjJiYjk4ZTFiOTkzMjVmMDY5MzU2ZmI4NzMxZmFlNDFiMDkzZTFiYmM=\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b7953b5b2815d858dd0f67d5cce660774d85827b\"}]}", + "body": "{\"base_tree\":\"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f8668de022cff09619d7e3bd10916c9b1e37fdae\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:05 GMT", + "Date": "Sun, 17 Nov 2019 07:48:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4940", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"649c0edb639d5d37a4d77f313f2c2134\"", + "ETag": "\"78fb1a5d4bd4e7229eadb4a6c2a6b226\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1094,31 +779,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE0:B4DC:A7EA46:CC30FF:5D77A64D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194E:470C5:85B637:9EEA00:5DD0FB33" }, - "response": "{\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a03cc9e4fd5f46ff1a1383b22aa4edc809590222\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"084d183f695e67dc990718da5818e3e6957ee12b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/084d183f695e67dc990718da5818e3e6957ee12b\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"parents\":[\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\"parents\":[\"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:06 GMT", + "Date": "Sun, 17 Nov 2019 07:48:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4939", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"87f5d302ebbc4cede238870f61cfea9e\"", + "ETag": "\"b44169fa6ca3e639ebf493c319089a6d\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/c59d6bd95e71a6762f7288f0807fa94a60c6f086", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1128,27 +812,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE2:244E4:AB15CC:CF3E72:5D77A64E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1950:470C7:1490B6B:183ED22:5DD0FB34" }, - "response": "{\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:06Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:06Z\"\n },\n \"tree\": {\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/2bb98e1b99325f069356fb8731fae41b093e1bbc\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OmM1OWQ2YmQ5NWU3MWE2NzYyZjcyODhmMDgwN2ZhOTRhNjBjNmYwODY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:04Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:04Z\"\n },\n \"tree\": {\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"force\":false}", + "body": "{\"sha\":\"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:07 GMT", + "Date": "Sun, 17 Nov 2019 07:48:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4938", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d058003193719706c1479bd2c520e375\"", + "ETag": "W/\"26575cf6e09024a3d25a6a583592e9b8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1160,11 +843,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE6:2B19:A5857F:C963BB:5D77A64E", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1954:2E3EE:22A0346:291A17F:5DD0FB34", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c59d6bd95e71a6762f7288f0807fa94a60c6f086\"\n }\n}\n", "status": 200 }, { @@ -1172,7 +854,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:08 GMT", + "Date": "Sun, 17 Nov 2019 07:48:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1181,8 +863,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1192,28 +874,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF2:1510F:11D520D:15A249A:5D77A650", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195D:470C9:221FE14:288B4D9:5DD0FB36", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:09 GMT", + "Date": "Sun, 17 Nov 2019 07:48:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4937", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f3447964c8f112b3050f470a964263e5\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"04ece46aadf1a7caf9350fa1b4cd03c5\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1226,11 +907,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF4:B4DE:11967CC:1567510:5D77A651", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1962:2E3F0:2F43714:37E8549:5DD0FB37", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"563352ca4661311a681929e5d20381f1266d49e5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/563352ca4661311a681929e5d20381f1266d49e5\"\n }\n }\n]\n", "status": 200 }, { @@ -1238,7 +918,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:10 GMT", + "Date": "Sun, 17 Nov 2019 07:48:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1247,8 +927,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1258,11 +938,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF6:1510F:11D54AC:15A27B0:5D77A652", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1963:470CB:2C737AA:349CA88:5DD0FB37", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1270,7 +949,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:12 GMT", + "Date": "Sun, 17 Nov 2019 07:48:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1279,8 +958,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1290,19 +969,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF8:9D20:10F600A:14BC802:5D77A653", - "content-length": "92", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1969:34217:22CC9C5:2958810:5DD0FB38", + "content-length": "92" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:13 GMT", + "Date": "Sun, 17 Nov 2019 07:48:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1311,8 +989,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1322,28 +1000,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BFC:B4DC:A7F1AB:CC39DB:5D77A654", - "content-length": "595", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196A:34218:2EA1FF7:373D703:5DD0FB39", + "content-length": "595" }, - "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3NTQ1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"number\":5,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NjEz\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"563352ca4661311a681929e5d20381f1266d49e5\",\"number\":5,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:14 GMT", + "Date": "Sun, 17 Nov 2019 07:48:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4936", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d058003193719706c1479bd2c520e375\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"26575cf6e09024a3d25a6a583592e9b8\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1356,32 +1033,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFE:1510F:11D5997:15A2DD3:5D77A656", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1972:8072:2D75679:35FA431:5DD0FB3A", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c59d6bd95e71a6762f7288f0807fa94a60c6f086\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsic2hhIjoiNzk0YmY1MTU5YzYyYTE3MTRkMzhhMzkzNWMwODEyZTc1ZjUyODYzZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsic2hhIjoiNTYzMzUyY2E0NjYxMzExYTY4MTkyOWU1ZDIwMzgxZjEyNjZkNDllNSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:15 GMT", + "Date": "Sun, 17 Nov 2019 07:48:11 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4935", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8fb7eaf4002d37412606e8cd42a526f1\"", + "ETag": "\"7cb1b4ea45ef51dae34a72ece243f2d2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/006a9d07a95115ecf4a7062a5dc3f98fc2d3d943", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/5c72d3aeef5e99fe2ee991ad81c4c7e012c8898e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1391,95 +1067,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A00:B4E0:16415B0:1B15087:5D77A656", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1977:34217:22CCC4B:2958B20:5DD0FB3B" }, - "response": "{\n \"sha\": \"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"\n}\n", + "response": "{\n \"sha\": \"5c72d3aeef5e99fe2ee991ad81c4c7e012c8898e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/5c72d3aeef5e99fe2ee991ad81c4c7e012c8898e\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A02:244E4:AB1EA4:CF4936:5D77A657", - "content-length": "685", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A04:3ED82:18033E9:1D346E3:5D77A657", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"}]}", + "body": "{\"base_tree\":\"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5c72d3aeef5e99fe2ee991ad81c4c7e012c8898e\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:16 GMT", + "Date": "Sun, 17 Nov 2019 07:48:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4934", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a7dfe54b4439d65956c568f53c0acaa7\"", + "ETag": "\"8fcce67960d6310e436b639c1c986f98\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1489,31 +1100,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A06:9D1E:496555:59CC11:5D77A658", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1978:1C993:2CBB1B5:3510768:5DD0FB3B" }, - "response": "{\n \"sha\": \"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"16573826ec3d493399dc33441e1683665bcea0c7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/16573826ec3d493399dc33441e1683665bcea0c7\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\"parents\":[\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6\",\"parents\":[\"c59d6bd95e71a6762f7288f0807fa94a60c6f086\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:17 GMT", + "Date": "Sun, 17 Nov 2019 07:48:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4933", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c70ea661900e10b9b1c9a1029890101f\"", + "ETag": "\"bebbf0d69babc75ef9844a18a9d2d1be\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/388026595f8e098dfad31b48a0c6d7b8738ffd2d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1523,27 +1133,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A08:244E7:114AAB0:1518117:5D77A658", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197D:470C9:22206AD:288BED1:5DD0FB3C" }, - "response": "{\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:17Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:17Z\"\n },\n \"tree\": {\n \"sha\": \"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjM4ODAyNjU5NWY4ZTA5OGRmYWQzMWI0OGEwYzZkN2I4NzM4ZmZkMmQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:12Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:48:12Z\"\n },\n \"tree\": {\n \"sha\": \"d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/d7af6d4d8a14e8ff6d9780661b6358bf15d60fd6\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c59d6bd95e71a6762f7288f0807fa94a60c6f086\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/c59d6bd95e71a6762f7288f0807fa94a60c6f086\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"force\":false}", + "body": "{\"sha\":\"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:18 GMT", + "Date": "Sun, 17 Nov 2019 07:48:14 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4932", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0430b5cc1a3eb8cb78296cc3fb63c572\"", + "ETag": "W/\"b6241c82c28aa46b6faacd549120ebc1\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1555,19 +1164,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0E:15110:180A791:1D32884:5D77A659", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1982:23E1A:216282E:27A1B5A:5DD0FB3D", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/388026595f8e098dfad31b48a0c6d7b8738ffd2d\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"563352ca4661311a681929e5d20381f1266d49e5\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:19 GMT", + "Date": "Sun, 17 Nov 2019 07:48:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1576,8 +1184,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1587,11 +1195,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A10:9D1E:49666F:59CD74:5D77A65B", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1997:2E3EE:22A1181:291B221:5DD0FB41", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjU2MzM1MmNhNDY2MTMxMWE2ODE5MjllNWQyMDM4MWYxMjY2ZDQ5ZTU=\",\"sha\":\"563352ca4661311a681929e5d20381f1266d49e5\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json index 5f780f5f..59d23f20 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:54 GMT", + "Date": "Sun, 17 Nov 2019 07:45:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8a3286f2d74580ee9474dc35965fadc1\"", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF2:450E4:89352BE:A36FBBA:5DCBB746", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2CAF84A:3502A38:5DD0FAA8", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:55 GMT", + "Date": "Sun, 17 Nov 2019 07:45:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,9 +53,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF6:2CFEA:66716E9:7A22C20:5DCBB746", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1837:23E1B:2DD7C6C:3652EE8:5DD0FAA9", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 @@ -65,17 +63,17 @@ "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:55 GMT", + "Date": "Sun, 17 Nov 2019 07:45:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5bebe5479de03b6d12e8ffe9f59dcfe3\"", - "Last-Modified": "Wed, 13 Nov 2019 07:56:23 GMT", + "ETag": "W/\"e886954ad418641ed3ee06885f1a0c99\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -87,25 +85,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFB:33B09:69508D3:7DB7C60:5DCBB747", - "content-length": "22013", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1839:8072:2D67840:35EA1E0:5DD0FAA9", + "content-length": "22145" }, - "response": "{\n \"id\": 221403168,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:56:21Z\",\n \"updated_at\": \"2019-11-13T07:56:23Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "POST", "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:56 GMT", + "Date": "Sun, 17 Nov 2019 07:45:46 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "21923", + "Content-Length": "22055", "Server": "GitHub.com", "Status": "202 Accepted", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -117,27 +114,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFC:450D6:69FC620:7E3932D:5DCBB748", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183D:2E3EC:79342F:91490D:5DD0FAAA" }, - "response": "{\n \"id\": 221403168,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:56:21Z\",\n \"updated_at\": \"2019-11-13T07:56:23Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 202 }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:57 GMT", + "Date": "Sun, 17 Nov 2019 07:45:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5bebe5479de03b6d12e8ffe9f59dcfe3\"", - "Last-Modified": "Wed, 13 Nov 2019 07:56:23 GMT", + "ETag": "W/\"e886954ad418641ed3ee06885f1a0c99\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -149,11 +145,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E04:450E4:8935609:A36FFC9:5DCBB748", - "content-length": "22013", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1842:470CB:2C68FE9:3490172:5DD0FAAA", + "content-length": "22145" }, - "response": "{\n \"id\": 221403168,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:56:21Z\",\n \"updated_at\": \"2019-11-13T07:56:23Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { @@ -161,7 +156,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:57 GMT", + "Date": "Sun, 17 Nov 2019 07:45:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -171,7 +166,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4990", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -181,9 +176,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E06:43EEE:1D8DF9C:23567D6:5DCBB749", - "content-length": "176", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1843:8070:22544D0:28C4D74:5DD0FAAB", + "content-length": "176" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -193,7 +187,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:58 GMT", + "Date": "Sun, 17 Nov 2019 07:45:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -203,7 +197,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -213,11 +207,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E07:43EF3:3A20592:45A658F:5DCBB74A", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1848:23E1B:2DD7FCF:36532EE:5DD0FAAC", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -225,7 +218,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -235,7 +228,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -245,11 +238,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E0C:43EF3:3A20605:45A6616:5DCBB74A", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1849:2E3F0:2F38A29:37DB5C3:5DD0FAAC", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -257,7 +249,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -267,7 +259,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -277,11 +269,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E0D:3A597:8DE984E:A8B045D:5DCBB74A", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184B:2E3EE:2297A05:290FF08:5DD0FAAC", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNDI3Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -289,7 +280,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -299,7 +290,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -309,11 +300,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E12:3A595:3DD3C56:49E9DA5:5DCBB74B", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1850:23E1B:2DD813A:36534AC:5DD0FAAD", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -321,7 +311,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -331,7 +321,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -341,11 +331,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E13:3A597:8DE990A:A8B0543:5DCBB74B", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1851:470CB:2C69234:349043F:5DD0FAAD", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -353,7 +342,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -363,7 +352,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4984", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -373,11 +362,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E15:BBFA:87A50D1:A23FCFD:5DCBB74B", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1853:34215:778617:8F1C6C:5DD0FAAD", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -385,7 +373,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -395,7 +383,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4983", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -405,11 +393,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E14:2CFED:8FFB724:AB6866D:5DCBB74B", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1852:34217:22C4CD9:294F1AF:5DD0FAAD", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -417,7 +404,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:59 GMT", + "Date": "Sun, 17 Nov 2019 07:45:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -427,7 +414,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -437,24 +424,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E1B:3A596:656A92E:79218AE:5DCBB74B", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1858:23E1A:2158430:2795CBF:5DD0FAAD", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:03 GMT", + "Date": "Sun, 17 Nov 2019 07:45:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -466,9 +452,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E28:2CFE4:1987EB0:1E8A399:5DCBB74F", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1865:8070:225492E:28C52B4:5DD0FAB0", + "content-length": "144" }, "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -478,7 +463,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:04 GMT", + "Date": "Sun, 17 Nov 2019 07:45:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -488,7 +473,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -498,11 +483,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E2D:33B0A:8A47949:A4F1D01:5DCBB74F", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186A:23E19:13C3578:1762290:5DD0FAB1", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -510,17 +494,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:04 GMT", + "Date": "Sun, 17 Nov 2019 07:45:54 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "211", + "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"31189b4cea84d41867f5c788c2736b05\"", + "ETag": "\"4fb898f9e4ad7b76619653a9688a2b6c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -533,8 +517,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2E:BBF8:68F13E9:7D2A97C:5DCBB750", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186B:23E1A:2158920:2796289:5DD0FAB1" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -544,7 +527,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:05 GMT", + "Date": "Sun, 17 Nov 2019 07:45:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -554,7 +537,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -564,289 +547,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E36:43EF6:673E76A:7B407DD:5DCBB750", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1870:2E3EB:244798:2B6E12:5DD0FAB2", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzMTY4Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3B:3A595:3DD4192:49EA3D5:5DCBB751", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3A:3A597:8DEA46B:A8B12BE:5DCBB751", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3D:33B09:695180B:7DB8E29:5DCBB752", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3E:450D1:213610:2982E8:5DCBB752", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E43:43EF8:89BF9F6:A40B518:5DCBB752", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E42:BBF5:3C1DE27:47D7C24:5DCBB752", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:07 GMT", + "Date": "Sun, 17 Nov 2019 07:45:55 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2390", + "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e9a6d5a794b0aa5325fc636cac21575d\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E49:BBEA:9DECB5:BDD441:5DCBB753", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "843", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"89dfc916d2f7b5a0c9551d4e787d4a13\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4A:450D5:3AC959D:465FF96:5DCBB754", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11921", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"53b1f9ef44bd31152e6827cbab369fa1\"", + "ETag": "\"d5ce5b24c947cb2644dfcbbce4ce120c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -859,8 +581,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4E:2CFEA:6672763:7A23FB4:5DCBB754", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1875:1C98C:230501A:297079E:5DD0FAB3" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -870,20 +591,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:10 GMT", + "Date": "Sun, 17 Nov 2019 07:45:56 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1560", + "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b3d2970bd92c353697658cfa14dcbd97\"", + "ETag": "\"6b479c05a435efcb11803d8808816d77\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/ab1034e50c8201e67b80a0e584f728d56966f266", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d29a829f332eef85f98b4f2ee705433f310d9196", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -893,18 +614,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E54:33B09:6951CA9:7DB93A4:5DCBB755", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1876:8070:2254B9E:28C55B5:5DD0FAB3" }, - "response": "{\n \"sha\": \"ab1034e50c8201e67b80a0e584f728d56966f266\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzMTY4OmFiMTAzNGU1MGM4MjAxZTY3YjgwYTBlNTg0ZjcyOGQ1Njk2NmYyNjY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ab1034e50c8201e67b80a0e584f728d56966f266\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ab1034e50c8201e67b80a0e584f728d56966f266\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:09Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:09Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"d29a829f332eef85f98b4f2ee705433f310d9196\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OmQyOWE4MjlmMzMyZWVmODVmOThiNGYyZWU3MDU0MzNmMzEwZDkxOTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d29a829f332eef85f98b4f2ee705433f310d9196\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d29a829f332eef85f98b4f2ee705433f310d9196\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:45:56Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:45:56Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"ab1034e50c8201e67b80a0e584f728d56966f266\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"d29a829f332eef85f98b4f2ee705433f310d9196\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:11 GMT", + "Date": "Sun, 17 Nov 2019 07:45:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -913,8 +633,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -924,24 +644,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E58:3A594:1BA3034:212B048:5DCBB756", - "content-length": "599", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187C:470C9:22173BB:2881279:5DD0FAB4", + "content-length": "604" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OmFiMTAzNGU1MGM4MjAxZTY3YjgwYTBlNTg0ZjcyOGQ1Njk2NmYyNjY=\",\"sha\":\"ab1034e50c8201e67b80a0e584f728d56966f266\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzMTY4OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM2MzE1MDUzODItYTZ2czk3Z2plbi9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OmQyOWE4MjlmMzMyZWVmODVmOThiNGYyZWU3MDU0MzNmMzEwZDkxOTY=\",\"sha\":\"d29a829f332eef85f98b4f2ee705433f310d9196\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:12 GMT", + "Date": "Sun, 17 Nov 2019 07:45:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -954,9 +673,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5D:450D6:69FDA2A:7E3AB37:5DCBB757", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1884:8072:2D689C8:35EB660:5DD0FAB5", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -966,17 +684,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:12 GMT", + "Date": "Sun, 17 Nov 2019 07:45:58 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "211", + "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d2e59f015c263094a35700fed3484fd9\"", + "ETag": "\"dfdf0daa31a0af05c9ade6d86d34b5ad\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -989,8 +707,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E62:33B0A:8A488C0:A4F2F62:5DCBB758", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1888:1C993:2CB0800:3503D26:5DD0FAB5" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -1000,17 +717,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:13 GMT", + "Date": "Sun, 17 Nov 2019 07:45:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "569", + "Content-Length": "571", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a1d46bdb2c31222f4520df6ad2471085\"", + "ETag": "\"0454f8a518f6139f92bd55d0bab7bff0\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -1023,8 +740,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E63:3A597:8DEB0C9:A8B21A2:5DCBB759", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1889:1C918:1675:63D9:5DD0FAB6" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -1034,20 +750,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:14 GMT", + "Date": "Sun, 17 Nov 2019 07:45:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1153", + "Content-Length": "1156", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d376c2d86ef6237e04aabed953c36dca\"", + "ETag": "\"e6ac5fc63e15025c29c54ef8f6da7818\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/5790573fc5fa720d9146b934cd9e4d91de414339", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1057,28 +773,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E68:2CFEA:6672D5D:7A246C1:5DCBB759", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188E:1C985:130ACC7:16A219B:5DD0FAB7" }, - "response": "{\n \"sha\": \"5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzMTY4OjU3OTA1NzNmYzVmYTcyMGQ5MTQ2YjkzNGNkOWU0ZDkxZGU0MTQzMzk=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:14Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:14Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjZmNjIzMzJmZjdhNzA1NGVkZDNjMDdhZDg2ODdkM2U4ZGJjYmRjOWE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:45:59Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:45:59Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"5790573fc5fa720d9146b934cd9e4d91de414339\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:15 GMT", + "Date": "Sun, 17 Nov 2019 07:46:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "492", + "Content-Length": "494", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9fa2f256f7677665901811769d12507e\"", + "ETag": "\"c242b791c86be3bf8f783c1633bc9705\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", @@ -1091,10 +806,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6D:3A597:8DEB2B9:A8B23F7:5DCBB75A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1893:1C97B:2A4433:326A71:5DD0FAB8" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzMTY4OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/5790573fc5fa720d9146b934cd9e4d91de414339\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\"\n }\n}\n", "status": 201 }, { @@ -1102,20 +816,86 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:16 GMT", + "Date": "Sun, 17 Nov 2019 07:46:02 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "211", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0de4b1230340abf262b4f0acbfcdace8\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1898:34217:22C575D:294FE6A:5DD0FAB9" + }, + "response": "{\n \"sha\": \"f8668de022cff09619d7e3bd10916c9b1e37fdae\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae\"\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f8668de022cff09619d7e3bd10916c9b1e37fdae\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"78fb1a5d4bd4e7229eadb4a6c2a6b226\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "189D:806E:1345347:16EAB1D:5DD0FABA" + }, + "response": "{\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"084d183f695e67dc990718da5818e3e6957ee12b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/084d183f695e67dc990718da5818e3e6957ee12b\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\"parents\":[\"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"abb1bb2612b09d99b586874e670a1157\"", + "ETag": "\"68a7fbcbb8175ec85f0e44d324c749a2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b117365f8a58249cc712d8564ee287afa2f131a3", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/80a31f0693aaf6cbae28fa1cdba316ae6887eed7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1125,159 +905,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E72:2CFED:8FFD7BF:AB6AC82:5DCBB75B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A2:34218:2E96F42:373070D:5DD0FABB" }, - "response": "{\n \"sha\": \"b117365f8a58249cc712d8564ee287afa2f131a3\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b117365f8a58249cc712d8564ee287afa2f131a3\"\n}\n", + "response": "{\n \"sha\": \"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjgwYTMxZjA2OTNhYWY2Y2JhZTI4ZmExY2RiYTMxNmFlNjg4N2VlZDc=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:03Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:03Z\"\n },\n \"tree\": {\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/6f62332ff7a7054edd3c07ad8687d3e8dbcbdc9a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"5790573fc5fa720d9146b934cd9e4d91de414339\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E77:33B0A:8A48EB9:A4F3693:5DCBB75C", - "content-length": "558", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OjU3OTA1NzNmYzVmYTcyMGQ5MTQ2YjkzNGNkOWU0ZDkxZGU0MTQzMzk=\",\"sha\":\"5790573fc5fa720d9146b934cd9e4d91de414339\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"5790573fc5fa720d9146b934cd9e4d91de414339\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E78:2CFE4:1988353:1E8A912:5DCBB75C", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzMTY4OjU3OTA1NzNmYzVmYTcyMGQ5MTQ2YjkzNGNkOWU0ZDkxZGU0MTQzMzk=\",\"sha\":\"5790573fc5fa720d9146b934cd9e4d91de414339\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"5790573fc5fa720d9146b934cd9e4d91de414339\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b117365f8a58249cc712d8564ee287afa2f131a3\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "875", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ff687296469b4e44f6851103dd09b69b\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/6ebf8f83bbae606434f1f16644ae8ce82c350a4a", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7A:33B07:19C3D62:1F1AD99:5DCBB75C", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"6ebf8f83bbae606434f1f16644ae8ce82c350a4a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/6ebf8f83bbae606434f1f16644ae8ce82c350a4a\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"887f73eee31da54751bd2785acbedeec41896b50\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/887f73eee31da54751bd2785acbedeec41896b50\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"6ebf8f83bbae606434f1f16644ae8ce82c350a4a\",\"parents\":[\"5790573fc5fa720d9146b934cd9e4d91de414339\"]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:57:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1635", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7fa89c22903f69256a656a31ec7ba993\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/0681012221907a3589c23fd34ac1e2c4e50ece8e", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A594:1BA329E:212B340:5DCBB75D", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0681012221907a3589c23fd34ac1e2c4e50ece8e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzMTY4OjA2ODEwMTIyMjE5MDdhMzU4OWMyM2ZkMzRhYzFlMmM0ZTUwZWNlOGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0681012221907a3589c23fd34ac1e2c4e50ece8e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/0681012221907a3589c23fd34ac1e2c4e50ece8e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:17Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:57:17Z\"\n },\n \"tree\": {\n \"sha\": \"6ebf8f83bbae606434f1f16644ae8ce82c350a4a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/6ebf8f83bbae606434f1f16644ae8ce82c350a4a\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/5790573fc5fa720d9146b934cd9e4d91de414339\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/5790573fc5fa720d9146b934cd9e4d91de414339\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"sha\":\"0681012221907a3589c23fd34ac1e2c4e50ece8e\",\"force\":false}", + "body": "{\"sha\":\"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:19 GMT", + "Date": "Sun, 17 Nov 2019 07:46:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ea44d905429dcd33ed7806debb287045\"", + "ETag": "W/\"f78ad7553db43e9d9f2dbadf224632a1\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1289,11 +936,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E85:3A596:656C029:792342A:5DCBB75E", - "content-length": "492", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A7:34217:22C59FB:2950193:5DD0FABB", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzMTY4OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0681012221907a3589c23fd34ac1e2c4e50ece8e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0681012221907a3589c23fd34ac1e2c4e50ece8e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80a31f0693aaf6cbae28fa1cdba316ae6887eed7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/80a31f0693aaf6cbae28fa1cdba316ae6887eed7\"\n }\n}\n", "status": 200 }, { @@ -1301,7 +947,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:57:19 GMT", + "Date": "Sun, 17 Nov 2019 07:46:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1310,8 +956,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1321,11 +967,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E8A:2CFED:8FFDEF7:AB6B4F3:5DCBB75F", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AC:2E3F0:2F39F5C:37DCF68:5DD0FABD", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json index 3f403fc1..be4f0a47 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:54 GMT", + "Date": "Sun, 17 Nov 2019 07:41:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4896", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a276b43fb76d38782de30a12a20e2a9c\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECF:3A596:65592E6:790CA19:5DCBB656", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1929:8070:224604D:28B3C36:5DD0F9BF", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:55 GMT", + "Date": "Sun, 17 Nov 2019 07:41:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4895", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED4:33B08:3EAFD98:4ACBAD5:5DCBB656", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1931:2E3F0:2F24A5B:37C3898:5DD0F9BF", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -69,7 +67,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:55 GMT", + "Date": "Sun, 17 Nov 2019 07:41:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -79,7 +77,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4990", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -89,9 +87,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED5:3A594:1B9DA1D:21248E9:5DCBB657", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1932:34217:22B56B7:293CEBA:5DD0F9C0", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -101,7 +98,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:56 GMT", + "Date": "Sun, 17 Nov 2019 07:41:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -111,7 +108,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -121,19 +118,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDA:43EF6:672C343:7B2A927:5DCBB658", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470CB:2C56E62:347A767:5DD0F9C0", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", + "Date": "Sun, 17 Nov 2019 07:41:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -143,7 +139,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -153,19 +149,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE0:33B07:19BEE9C:1F14D7F:5DCBB658", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193D:2E3EE:22879DB:28FD010:5DD0F9C1", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -175,7 +170,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -185,11 +180,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE6:33B0A:8A2F8BB:A4D4F92:5DCBB658", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193C:2E3F0:2F24C66:37C3B0E:5DD0F9C1", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -197,7 +191,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -207,7 +201,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -217,11 +211,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EF2:450E4:891ED5A:A354D10:5DCBB659", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1943:1C993:2C9EC4F:34EE572:5DD0F9C2", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -229,7 +222,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -239,7 +232,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -249,43 +242,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F05:BBF8:68DF129:7D14C64:5DCBB659", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1945:8070:2246364:28B3FF1:5DD0F9C2", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4984", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F06:2CFED:8FE2A07:AB4AB51:5DCBB659", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -293,7 +253,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:57 GMT", + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -303,7 +263,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4983", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -313,11 +273,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F04:2CFED:8FE2A08:AB4AB50:5DCBB659", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1946:1C993:2C9EC53:34EE573:5DD0F9C2", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -325,7 +284,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:58 GMT", + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -335,7 +294,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,24 +304,54 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F07:2CFED:8FE2A0C:AB4AB5B:5DCBB659", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1947:806E:133C051:16DFE09:5DD0F9C2", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:41:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1944:23E1B:2DC4361:363BAD8:5DD0F9C2", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:01 GMT", + "Date": "Sun, 17 Nov 2019 07:41:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4894", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -374,9 +363,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F14:43EF8:89A8FD8:A3EFEEB:5DCBB65C", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1956:1C98C:22F533C:295DCCC:5DD0F9C5", + "content-length": "144" }, "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -386,7 +374,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:01 GMT", + "Date": "Sun, 17 Nov 2019 07:41:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -396,7 +384,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -406,11 +394,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F15:33B08:3EB028D:4ACC0CF:5DCBB65D", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1957:34217:22B5D22:293D62F:5DD0F9C5", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -418,17 +405,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:02 GMT", + "Date": "Sun, 17 Nov 2019 07:41:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4893", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f8eeaba8ad8eaebf5e283dc5767e39a\"", + "ETag": "\"360f2cadf1abf473f2e0316bb085e9c9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -441,8 +428,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1A:43EF8:89A9289:A3F022A:5DCBB65E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195C:470C9:2208C80:286FDF1:5DD0F9C6" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -452,7 +438,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:03 GMT", + "Date": "Sun, 17 Nov 2019 07:41:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -462,7 +448,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -472,289 +458,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F1F:3A595:3DC8CB7:49DCB9A:5DCBB65E", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1963:470C7:1483B9B:182F624:5DD0F9C7", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:03 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F20:33B09:693EBAA:7DA273B:5DCBB65F", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F21:33B0A:8A3051E:A4D5E14:5DCBB65F", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F27:33B07:19BF1C8:1F1514C:5DCBB660", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F26:2CFEA:66612D4:7A0F3D2:5DCBB660", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2C:BBF5:3C13051:47CAB85:5DCBB661", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2D:3A596:6559FC7:790D980:5DCBB661", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:06 GMT", + "Date": "Sun, 17 Nov 2019 07:42:00 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", + "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4892", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"afc456f12c53acba87cae8c3f305fac9\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F32:2CFED:8FE39E1:AB4BDE5:5DCBB661", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4891", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bd0a6386e55d2da10c88a8b86b291814\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F37:3A593:8CFFC0:A8D4D9:5DCBB662", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11731", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4890", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5ef5b0dadf07cc671aa57ea16f105174\"", + "ETag": "\"d1806b8a8fb7174cac5409ac1b14f80b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -767,8 +492,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F38:43EF8:89A9B60:A3F0C7A:5DCBB663", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1964:1C993:2C9F1F6:34EEC40:5DD0F9C7" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -778,20 +502,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:08 GMT", + "Date": "Sun, 17 Nov 2019 07:42:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1499", + "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4889", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f10d5da06617a07e17ea80fbdd6c46ee\"", + "ETag": "\"7db44947f7bbda5635a16b720ff17278\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/b1c23c8843ff0b0a17005535624be897f08ec99d", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ddfa18680eb29e8adb85fab9e8a9408f1c53af23", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -801,18 +525,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3D:3A593:8CFFF5:A8D514:5DCBB664", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1968:8070:2246926:28B4708:5DD0F9C8" }, - "response": "{\n \"sha\": \"b1c23c8843ff0b0a17005535624be897f08ec99d\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmIxYzIzYzg4NDNmZjBiMGExNzAwNTUzNTYyNGJlODk3ZjA4ZWM5OWQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b1c23c8843ff0b0a17005535624be897f08ec99d\",\n \"html_url\": \"https://github.com/owner/repo/commit/b1c23c8843ff0b0a17005535624be897f08ec99d\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:08Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOmRkZmExODY4MGViMjllOGFkYjg1ZmFiOWU4YTk0MDhmMWM1M2FmMjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\n \"html_url\": \"https://github.com/owner/repo/commit/ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:01Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:10 GMT", + "Date": "Sun, 17 Nov 2019 07:42:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -821,8 +544,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -832,24 +555,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F42:33B09:693F299:7DA2F82:5DCBB664", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196C:2E3ED:13404F7:16FA0E6:5DD0F9C9", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmIxYzIzYzg4NDNmZjBiMGExNzAwNTUzNTYyNGJlODk3ZjA4ZWM5OWQ=\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkxMzM2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmRkZmExODY4MGViMjllOGFkYjg1ZmFiOWU4YTk0MDhmMWM1M2FmMjM=\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5MjYy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:11 GMT", + "Date": "Sun, 17 Nov 2019 07:42:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4888", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -862,9 +584,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4B:3A596:655A7B6:790E2E8:5DCBB666", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1975:1C98C:22F5BF7:295E6DC:5DD0F9CB", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -874,17 +595,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:11 GMT", + "Date": "Sun, 17 Nov 2019 07:42:04 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4887", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4c5afe049aefcf885d274dd49ab8c54a\"", + "ETag": "\"df302e47b00b8005ebba3cbaf8125328\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -897,8 +618,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4C:33B09:693F572:7DA32F3:5DCBB667", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1979:470C9:22092F5:287059B:5DD0F9CB" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -908,17 +628,17 @@ "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:12 GMT", + "Date": "Sun, 17 Nov 2019 07:42:05 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "559", + "Content-Length": "561", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4886", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9a05b69ac40e782d1f78b928c791a414\"", + "ETag": "\"560801239597f4d6e42678d7a8c2d11a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -931,8 +651,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F51:3A596:655A92B:790E4B8:5DCBB667", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197B:2E3EC:7904F7:911075:5DD0F9CC" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -942,20 +661,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:13 GMT", + "Date": "Sun, 17 Nov 2019 07:42:05 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1102", + "Content-Length": "1105", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4885", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"92152c70eeb4d03fb1fdb2378ac774b8\"", + "ETag": "\"933e3cea0ff4474bc6c9667486c592c1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/11b06f20f87a47574199281877ecdadba2014d9b", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7304893c6e23d288be7d9f06e932888872ed6e66", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -965,28 +684,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F56:450D6:69EBCC3:7E2549B:5DCBB668", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197C:34218:2E8176F:371723C:5DD0F9CD" }, - "response": "{\n \"sha\": \"11b06f20f87a47574199281877ecdadba2014d9b\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOjExYjA2ZjIwZjg3YTQ3NTc0MTk5MjgxODc3ZWNkYWRiYTIwMTRkOWI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/11b06f20f87a47574199281877ecdadba2014d9b\",\n \"html_url\": \"https://github.com/owner/repo/commit/11b06f20f87a47574199281877ecdadba2014d9b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:12Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjczMDQ4OTNjNmUyM2QyODhiZTdkOWYwNmU5MzI4ODg4NzJlZDZlNjY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"html_url\": \"https://github.com/owner/repo/commit/7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:05Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"11b06f20f87a47574199281877ecdadba2014d9b\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"7304893c6e23d288be7d9f06e932888872ed6e66\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:14 GMT", + "Date": "Sun, 17 Nov 2019 07:42:06 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "482", + "Content-Length": "484", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4884", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d28bd27ebfdda9475602580bcc3826f8\"", + "ETag": "\"6c6b8f649b969ba6c49d975b988f7fc3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", @@ -999,31 +717,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F57:450E4:89208A6:A356DE2:5DCBB669", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1982:23E1A:2148F1F:2783D25:5DD0F9CE" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"11b06f20f87a47574199281877ecdadba2014d9b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/11b06f20f87a47574199281877ecdadba2014d9b\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7304893c6e23d288be7d9f06e932888872ed6e66\"\n }\n}\n", "status": 201 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJiMWMyM2M4ODQzZmYwYjBhMTcwMDU1MzU2MjRiZTg5N2YwOGVjOTlkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJkZGZhMTg2ODBlYjI5ZThhZGI4NWZhYjllOGE5NDA4ZjFjNTNhZjIzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:14 GMT", + "Date": "Sun, 17 Nov 2019 07:42:07 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4883", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df0cf2c6a232c9c6f772452136c77bde\"", + "ETag": "\"f3176d88aa49825178498f066649947d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/43ac250dedf055b370cdcb0b9eb39f9a1aa753b9", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/d1d7196cfb4f1b519d81c1ab76438fd02d9323fe", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1033,95 +750,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5D:43EF6:672D9EF:7B2C421:5DCBB66A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198B:2E3F0:2F26193:37C5410:5DD0F9CF" }, - "response": "{\n \"sha\": \"43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\"\n}\n", + "response": "{\n \"sha\": \"d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"11b06f20f87a47574199281877ecdadba2014d9b\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F63:450D6:69EC03B:7E258BC:5DCBB66B", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjExYjA2ZjIwZjg3YTQ3NTc0MTk5MjgxODc3ZWNkYWRiYTIwMTRkOWI=\",\"sha\":\"11b06f20f87a47574199281877ecdadba2014d9b\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"11b06f20f87a47574199281877ecdadba2014d9b\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F62:33B08:3EB0E18:4ACCE8F:5DCBB66B", - "content-length": "558", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjExYjA2ZjIwZjg3YTQ3NTc0MTk5MjgxODc3ZWNkYWRiYTIwMTRkOWI=\",\"sha\":\"11b06f20f87a47574199281877ecdadba2014d9b\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"11b06f20f87a47574199281877ecdadba2014d9b\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\"}]}", + "body": "{\"base_tree\":\"7304893c6e23d288be7d9f06e932888872ed6e66\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:16 GMT", + "Date": "Sun, 17 Nov 2019 07:42:08 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "892", + "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4882", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7e4aea7689bc142c71851c1fbfbc09a7\"", + "ETag": "\"11d3f038266248d72f64311de73f9ae2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/98a73ce0d4d60ebb693f6ed0fac3d3d812004f98", + "Location": "https://api.github.com/repos/owner/repo/git/trees/27545a81b5e360d6b0734e191545253d0a550668", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1131,31 +783,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6A:43EF6:672DB51:7B2C5D3:5DCBB66B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198C:8072:2D55486:35D47D8:5DD0F9D0" }, - "response": "{\n \"sha\": \"98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"27545a81b5e360d6b0734e191545253d0a550668\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/27545a81b5e360d6b0734e191545253d0a550668\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\",\"parents\":[\"11b06f20f87a47574199281877ecdadba2014d9b\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"27545a81b5e360d6b0734e191545253d0a550668\",\"parents\":[\"7304893c6e23d288be7d9f06e932888872ed6e66\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:16 GMT", + "Date": "Sun, 17 Nov 2019 07:42:09 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1505", + "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4881", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1dd58e695c6bf0fe34266452ee224b14\"", + "ETag": "\"1266a0aa69fe721f43ed921fe0c81bf9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/a55cb29364ba4a1c34f027897877ef0076356497", + "Location": "https://api.github.com/repos/owner/repo/git/commits/94820ccfcf1a8d6246e78f8301ab968b4d677afb", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1165,27 +816,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6E:450D5:3AC0700:465516B:5DCBB66C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1992:2E3EC:790689:911246:5DD0F9D0" }, - "response": "{\n \"sha\": \"a55cb29364ba4a1c34f027897877ef0076356497\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmE1NWNiMjkzNjRiYTRhMWMzNGYwMjc4OTc4NzdlZjAwNzYzNTY0OTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a55cb29364ba4a1c34f027897877ef0076356497\",\n \"html_url\": \"https://github.com/owner/repo/commit/a55cb29364ba4a1c34f027897877ef0076356497\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:16Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:53:16Z\"\n },\n \"tree\": {\n \"sha\": \"98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"11b06f20f87a47574199281877ecdadba2014d9b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/11b06f20f87a47574199281877ecdadba2014d9b\",\n \"html_url\": \"https://github.com/owner/repo/commit/11b06f20f87a47574199281877ecdadba2014d9b\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjk0ODIwY2NmY2YxYThkNjI0NmU3OGY4MzAxYWI5NjhiNGQ2NzdhZmI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"html_url\": \"https://github.com/owner/repo/commit/94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:09Z\"\n },\n \"tree\": {\n \"sha\": \"27545a81b5e360d6b0734e191545253d0a550668\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/27545a81b5e360d6b0734e191545253d0a550668\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7304893c6e23d288be7d9f06e932888872ed6e66\",\n \"html_url\": \"https://github.com/owner/repo/commit/7304893c6e23d288be7d9f06e932888872ed6e66\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"a55cb29364ba4a1c34f027897877ef0076356497\",\"force\":false}", + "body": "{\"sha\":\"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:18 GMT", + "Date": "Sun, 17 Nov 2019 07:42:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4880", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"839fa5997121e5168d23639046525a76\"", + "ETag": "W/\"f3f14c3a854f058bf254cb01ce2c6630\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1197,11 +847,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F73:3A597:8DD550F:A897CCA:5DCBB66D", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1997:2E3EC:7906CB:911293:5DD0F9D1", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a55cb29364ba4a1c34f027897877ef0076356497\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a55cb29364ba4a1c34f027897877ef0076356497\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94820ccfcf1a8d6246e78f8301ab968b4d677afb\"\n }\n}\n", "status": 200 }, { @@ -1209,7 +858,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:18 GMT", + "Date": "Sun, 17 Nov 2019 07:42:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1218,8 +867,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1229,19 +878,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F7F:450D3:1A649E9:1FA70E2:5DCBB66E", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199C:34218:2E81FA7:3717C04:5DD0F9D2", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:19 GMT", + "Date": "Sun, 17 Nov 2019 07:42:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1250,8 +898,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1261,19 +909,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F80:43EEE:1D88C1B:23503ED:5DCBB66F", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A1:470CB:2C58834:347C638:5DD0F9D3", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmIxYzIzYzg4NDNmZjBiMGExNzAwNTUzNTYyNGJlODk3ZjA4ZWM5OWQ=\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmRkZmExODY4MGViMjllOGFkYjg1ZmFiOWU4YTk0MDhmMWM1M2FmMjM=\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:25 GMT", + "Date": "Sun, 17 Nov 2019 07:42:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1282,8 +929,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1293,19 +940,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FB0:450D6:69ECB94:7E26647:5DCBB674", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C3:2E3EE:2289569:28FF098:5DD0F9D9", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmIxYzIzYzg4NDNmZjBiMGExNzAwNTUzNTYyNGJlODk3ZjA4ZWM5OWQ=\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmRkZmExODY4MGViMjllOGFkYjg1ZmFiOWU4YTk0MDhmMWM1M2FmMjM=\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:30 GMT", + "Date": "Sun, 17 Nov 2019 07:42:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1314,8 +960,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1325,11 +971,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FB7:3A596:655BDFA:790FDAA:5DCBB67A", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470C9:220A75D:2871DBB:5DD0F9DE", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmIxYzIzYzg4NDNmZjBiMGExNzAwNTUzNTYyNGJlODk3ZjA4ZWM5OWQ=\",\"sha\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmRkZmExODY4MGViMjllOGFkYjg1ZmFiOWU4YTk0MDhmMWM1M2FmMjM=\",\"sha\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json index 5eeff72e..ce667201 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:31 GMT", + "Date": "Sun, 17 Nov 2019 07:48:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4926", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A90:2B19:A59833:C97AE2:5D77A667", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187A:23E1A:21650D1:27A4B3D:5DD0FB63", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:32 GMT", + "Date": "Sun, 17 Nov 2019 07:48:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4925", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,57 +53,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A92:3ED7B:1205850:15E259C:5D77A668", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187C:470C9:222347C:288F491:5DD0FB64", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:33 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4924", - "X-RateLimit-Reset": "1568126016", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A94:2B1F:11CD6EB:15B7994:5D77A668", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:34:25Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:34 GMT", + "Date": "Sun, 17 Nov 2019 07:48:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4923", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b7e3548f150e4e4ae8eb44de281c8e95\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"45d7a8e0e46afb1e72b96d7de9d496f6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -116,11 +85,70 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A98:3ED6F:1A770:2334E:5D77A669", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187F:34218:2EA5AD9:3741CB9:5DD0FB64", + "content-length": "22145" }, - "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:34:25Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:48:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Sun, 17 Nov 2019 07:48:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1885:1C985:1311A92:16AA1AB:5DD0FB65" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:48:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 07:48:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"45d7a8e0e46afb1e72b96d7de9d496f6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "188B:34218:2EA5CDB:3741F2D:5DD0FB66", + "content-length": "22145" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:48:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:48:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { @@ -128,7 +156,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:34 GMT", + "Date": "Sun, 17 Nov 2019 07:48:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -137,8 +165,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -148,9 +176,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A99:2B0F:192DE9:1ED3BE:5D77A66A", - "content-length": "176", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:806E:134B61E:16F1FAC:5DD0FB66", + "content-length": "176" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -160,7 +187,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:35 GMT", + "Date": "Sun, 17 Nov 2019 07:48:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -169,8 +196,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4940", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -180,11 +207,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A9A:1510E:A88AC8:CD4B64:5D77A66A", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1891:806E:134B652:16F1FEC:5DD0FB67", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:48:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1894:1C98C:230FB27:297D432:5DD0FB68", + "content-length": "1218" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -192,7 +249,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Date": "Sun, 17 Nov 2019 07:48:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -201,8 +258,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4939", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -212,107 +269,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A9E:2B0F:192E39:1ED422:5D77A66B", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189D:8070:225FAEB:28D267D:5DD0FB68", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4938", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A9C:244EB:17959B8:1CA2FCC:5D77A66B", - "content-length": "1218", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4937", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA5:B4DE:11988D6:1569DDF:5D77A66C", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4936", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA9:2B24:174E81B:1C53FCB:5D77A66C", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNDI3Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -320,7 +280,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Date": "Sun, 17 Nov 2019 07:48:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -329,8 +289,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4935", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -340,19 +300,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA1:9D1F:9EFE6F:C20221:5D77A66C", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189E:1C985:1311C34:16AA38A:5DD0FB68", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:37 GMT", + "Date": "Sun, 17 Nov 2019 07:48:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -361,8 +320,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4934", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -372,11 +331,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA2:B4DE:11988D4:1569DDC:5D77A66C", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AF:470C9:2223948:288FA49:5DD0FB69", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:48:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18B2:470C9:222396C:288FA6E:5DD0FB69", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -384,7 +373,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:37 GMT", + "Date": "Sun, 17 Nov 2019 07:48:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -393,8 +382,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4933", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -404,29 +393,59 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA7:B4E0:1643933:1B17BC5:5D77A66C", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B0:8070:225FB98:28D275B:5DD0FB69", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:48:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18B6:34217:22CF3DE:295BBAA:5DD0FB69", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:40 GMT", + "Date": "Sun, 17 Nov 2019 07:49:00 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "553", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4922", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"", - "Last-Modified": "Tue, 10 Sep 2019 13:34:17 GMT", + "ETag": "\"5c72d3aeef5e99fe2ee991ad81c4c7e012c8898e\"", + "Last-Modified": "Sun, 17 Nov 2019 07:48:12 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -438,10 +457,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AAA:244E7:114C894:151A59A:5D77A66F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CB:34218:2EA6460:3742842:5DD0FB6C" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\"}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"sha\":\"563352ca4661311a681929e5d20381f1266d49e5\"}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -449,7 +467,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:41 GMT", + "Date": "Sun, 17 Nov 2019 07:49:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -458,8 +476,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4932", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -469,11 +487,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AAC:15110:180CB37:1D354F1:5D77A670", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D2:1C993:2CBF172:351531C:5DD0FB6C", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -481,7 +498,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:41 GMT", + "Date": "Sun, 17 Nov 2019 07:49:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -490,8 +507,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4931", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -501,11 +518,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AAE:B4DA:50396C:61DD81:5D77A671", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D4:34215:77AB30:8F495F:5DD0FB6D", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -513,17 +529,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:42 GMT", + "Date": "Sun, 17 Nov 2019 07:49:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4921", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e534bfcd1b6dc6f9245f32d16a0c64c9\"", + "ETag": "\"4fb898f9e4ad7b76619653a9688a2b6c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -536,8 +552,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB0:B4DA:5039D1:61DDF7:5D77A671", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D9:23E18:7302D4:89A9A2:5DD0FB6D" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -547,7 +562,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:43 GMT", + "Date": "Sun, 17 Nov 2019 07:49:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -556,8 +571,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4930", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -567,292 +582,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB2:2B1F:11CE2EF:15B889B:5D77A672", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DE:23E1B:2DE7734:3665A33:5DD0FB6E", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4928", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB6:3ED7B:1206634:15E36D3:5D77A673", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4929", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB4:2B1F:11CE3E3:15B89C9:5D77A673", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4926", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB8:B4DC:A80E9F:CC5CCD:5D77A674", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4927", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABA:2B1F:11CE4AA:15B8ACC:5D77A674", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4924", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABD:15110:180D1E9:1D35D60:5D77A674", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4925", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABE:2B19:A5A29C:C987F1:5D77A674", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4920", - "X-RateLimit-Reset": "1568126016", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f0da3cfe1d93508ff3394044fecf0870\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC1:3ED77:A7E1DC:CB677C:5D77A675", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4919", - "X-RateLimit-Reset": "1568126016", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2a4689a3495349436da3f799f67c3aa9\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC2:B4DE:11994BD:156AC95:5D77A676", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:47 GMT", + "Date": "Sun, 17 Nov 2019 07:49:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4918", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f36a35e8ea247dd844853de0d6154f29\"", + "ETag": "\"d5ce5b24c947cb2644dfcbbce4ce120c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -862,31 +616,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC4:2B24:174F878:1C55434:5D77A677", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DF:23E1B:2DE783A:3665B70:5DD0FB6F" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:48 GMT", + "Date": "Sun, 17 Nov 2019 07:49:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4917", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fedbce95a584c8a2cb1083afb31c7e7c\"", + "ETag": "\"0c92f04bfb2c5780eb2160200d778515\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/4a4743cae96aea1eb112ac633c01deb4f9360717", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -896,18 +649,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC6:2B19:A5A4FA:C98AF3:5D77A677", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E4:8072:2D7A7C0:36002DD:5DD0FB6F" }, - "response": "{\n \"sha\": \"e1034178e4bee2579beab89a9954895257864a24\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OmUxMDM0MTc4ZTRiZWUyNTc5YmVhYjg5YTk5NTQ4OTUyNTc4NjRhMjQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1034178e4bee2579beab89a9954895257864a24\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:48Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:48Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4a4743cae96aea1eb112ac633c01deb4f9360717\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjRhNDc0M2NhZTk2YWVhMWViMTEyYWM2MzNjMDFkZWI0ZjkzNjA3MTc=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4a4743cae96aea1eb112ac633c01deb4f9360717\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4a4743cae96aea1eb112ac633c01deb4f9360717\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:04Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:04Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:49 GMT", + "Date": "Sun, 17 Nov 2019 07:49:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -916,8 +668,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4923", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -927,28 +679,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC8:B4E0:1644D1C:1B19434:5D77A678", - "content-length": "604", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E9:34218:2EA6D3C:374326C:5DD0FB70", + "content-length": "604" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmUxMDM0MTc4ZTRiZWUyNTc5YmVhYjg5YTk5NTQ4OTUyNTc4NjRhMjQ=\",\"sha\":\"e1034178e4bee2579beab89a9954895257864a24\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjRhNDc0M2NhZTk2YWVhMWViMTEyYWM2MzNjMDFkZWI0ZjkzNjA3MTc=\",\"sha\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:50 GMT", + "Date": "Sun, 17 Nov 2019 07:49:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4916", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0430b5cc1a3eb8cb78296cc3fb63c572\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"b6241c82c28aa46b6faacd549120ebc1\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -961,11 +712,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACA:3ED77:A7E5A3:CB6C2D:5D77A67A", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F3:470CB:2C76F74:34A0FC1:5DD0FB71", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/388026595f8e098dfad31b48a0c6d7b8738ffd2d\"\n }\n}\n", "status": 200 }, { @@ -973,20 +723,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:51 GMT", + "Date": "Sun, 17 Nov 2019 07:49:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4915", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"54f6490b9715c8c0813a4ff80c9f09f4\"", + "ETag": "\"0de4b1230340abf262b4f0acbfcdace8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -996,95 +746,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACC:B4DA:503EA9:61E3D7:5D77A67A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F4:23E19:13C9365:1769374:5DD0FB72" }, - "response": "{\n \"sha\": \"b7953b5b2815d858dd0f67d5cce660774d85827b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b\"\n}\n", + "response": "{\n \"sha\": \"f8668de022cff09619d7e3bd10916c9b1e37fdae\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4921", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD0:9D20:10F905A:14C03AA:5D77A67B", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:34:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4922", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ACE:244EB:17971E9:1CA4DE7:5D77A67B", - "content-length": "685", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo4YWNhMWIxZGU5MjZjZGFiNDRhOTU2OWZjZjc5N2VmZmQxYmM3Mjli\",\"sha\":\"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b7953b5b2815d858dd0f67d5cce660774d85827b\"}]}", + "body": "{\"base_tree\":\"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f8668de022cff09619d7e3bd10916c9b1e37fdae\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:52 GMT", + "Date": "Sun, 17 Nov 2019 07:49:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4914", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"649c0edb639d5d37a4d77f313f2c2134\"", + "ETag": "\"78fb1a5d4bd4e7229eadb4a6c2a6b226\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1094,31 +779,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD2:244E7:114D637:151B6EF:5D77A67C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F9:1C97B:2A542C:327D38:5DD0FB72" }, - "response": "{\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a03cc9e4fd5f46ff1a1383b22aa4edc809590222\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"084d183f695e67dc990718da5818e3e6957ee12b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/084d183f695e67dc990718da5818e3e6957ee12b\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"parents\":[\"948f910b887b9dad4059199a0f0e4ca06b866b86\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\"parents\":[\"388026595f8e098dfad31b48a0c6d7b8738ffd2d\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:53 GMT", + "Date": "Sun, 17 Nov 2019 07:49:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4913", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7c803dc41d88c0f3622c1c14bdd1a601\"", + "ETag": "\"c6756c066393ce4079ad5aaf9696fe88\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/0f3443ca99f4abc236c549a1fca808476e9e5441", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1128,27 +812,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD5:B4DA:503FF9:61E574:5D77A67C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FE:1C98C:231082D:297E3A5:5DD0FB73" }, - "response": "{\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:53Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:53Z\"\n },\n \"tree\": {\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjBmMzQ0M2NhOTlmNGFiYzIzNmM1NDlhMWZjYTgwODQ3NmU5ZTU0NDE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:07Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:07Z\"\n },\n \"tree\": {\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/388026595f8e098dfad31b48a0c6d7b8738ffd2d\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/388026595f8e098dfad31b48a0c6d7b8738ffd2d\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"force\":false}", + "body": "{\"sha\":\"0f3443ca99f4abc236c549a1fca808476e9e5441\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:54 GMT", + "Date": "Sun, 17 Nov 2019 07:49:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4912", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a3065f2b0a84492e7d6e2a1b87003710\"", + "ETag": "W/\"69ed6e65e3f06fd8a65172114c68563d\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1160,11 +843,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD6:244EB:1797536:1CA5221:5D77A67D", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FF:2E3ED:134E6EC:170B098:5DD0FB74", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0f3443ca99f4abc236c549a1fca808476e9e5441\"\n }\n}\n", "status": 200 }, { @@ -1172,7 +854,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:55 GMT", + "Date": "Sun, 17 Nov 2019 07:49:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1181,8 +863,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4920", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1192,28 +874,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD8:B4E0:1645625:1B19F6A:5D77A67E", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1908:34216:12EEA6B:16719B3:5DD0FB75", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:56 GMT", + "Date": "Sun, 17 Nov 2019 07:49:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4911", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c70416c52d05d7baf28623e1cfe5a2c\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"d39bbb2edd2865eae181042d5abc706b\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1226,11 +907,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADA:244E1:4FE5CA:6056E7:5D77A680", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3ED:134E865:170B250:5DD0FB76", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"e1034178e4bee2579beab89a9954895257864a24\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"4a4743cae96aea1eb112ac633c01deb4f9360717\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4a4743cae96aea1eb112ac633c01deb4f9360717\"\n }\n }\n]\n", "status": 200 }, { @@ -1238,7 +918,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:57 GMT", + "Date": "Sun, 17 Nov 2019 07:49:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1247,8 +927,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4919", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1258,11 +938,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ADC:15110:180E44D:1D3744D:5D77A681", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190E:2E3F0:2F490EB:37EEF60:5DD0FB76", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1270,7 +949,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:34:58 GMT", + "Date": "Sun, 17 Nov 2019 07:49:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1279,8 +958,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4918", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1290,19 +969,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ADE:9D20:10F98D7:14C0E11:5D77A682", - "content-length": "92", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C993:2CC0232:35166ED:5DD0FB77", + "content-length": "92" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:00 GMT", + "Date": "Sun, 17 Nov 2019 07:49:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1311,8 +989,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4917", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1322,28 +1000,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AE1:2B0F:19329E:1ED96F:5D77A683", - "content-length": "595", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1918:2E3EC:795C6D:917948:5DD0FB78", + "content-length": "595" }, - "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"number\":6,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5Njcy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\",\"number\":6,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:01 GMT", + "Date": "Sun, 17 Nov 2019 07:49:14 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4910", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a3065f2b0a84492e7d6e2a1b87003710\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "ETag": "W/\"69ed6e65e3f06fd8a65172114c68563d\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1356,32 +1033,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE2:1510E:A8A189:CD6779:5D77A684", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191D:1C993:2CC04BD:35169E8:5DD0FB79", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0f3443ca99f4abc236c549a1fca808476e9e5441\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsic2hhIjoiZTEwMzQxNzhlNGJlZTI1NzliZWFiODlhOTk1NDg5NTI1Nzg2NGEyNCJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsic2hhIjoiNGE0NzQzY2FlOTZhZWExZWIxMTJhYzYzM2MwMWRlYjRmOTM2MDcxNyJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:02 GMT", + "Date": "Sun, 17 Nov 2019 07:49:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4909", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"537a358ead6b7afdfccb0c1ece33514e\"", + "ETag": "\"c132c77179566b0d983978699172d7b7\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/7606b797e8f7feec10b2d51d4d2d24dffe0a45ec", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/3f383e06971f442e645af4290ac9a0fd5167dbd6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1391,95 +1067,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE4:1510F:11D988C:15A7B4E:5D77A685", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1924:8070:226109E:28D3FC0:5DD0FB7A" }, - "response": "{\n \"sha\": \"7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\"\n}\n", + "response": "{\n \"sha\": \"3f383e06971f442e645af4290ac9a0fd5167dbd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f383e06971f442e645af4290ac9a0fd5167dbd6\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:35:03 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4916", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AE8:244DF:19B4C1:1F460B:5D77A686", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:35:03 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4915", - "X-RateLimit-Reset": "1568126025", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AE6:9D21:16CCDAE:1BC4C1A:5D77A686", - "content-length": "685", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\"}]}", + "body": "{\"base_tree\":\"0f3443ca99f4abc236c549a1fca808476e9e5441\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3f383e06971f442e645af4290ac9a0fd5167dbd6\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:04 GMT", + "Date": "Sun, 17 Nov 2019 07:49:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4908", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d6d87c90b677ab4b627b4220cc20078e\"", + "ETag": "\"703b5d820bb7641773f8eef2ebcce4e1\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/39c91c977495f69c6e449c1c56c000a234c1fa39", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1489,31 +1100,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEA:244EB:179853B:1CA663A:5D77A687", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1925:1C993:2CC063D:3516BB8:5DD0FB7B" }, - "response": "{\n \"sha\": \"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"78015d33ac0f6fdc5d33e7f6fb26730e8ecc94ef\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/78015d33ac0f6fdc5d33e7f6fb26730e8ecc94ef\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"39c91c977495f69c6e449c1c56c000a234c1fa39\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/39c91c977495f69c6e449c1c56c000a234c1fa39\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7177739bcd066f2dc469c298cb3c2e1259f01937\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7177739bcd066f2dc469c298cb3c2e1259f01937\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\"parents\":[\"a2964c3e8534ec199585df3489081102cabe25e4\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"39c91c977495f69c6e449c1c56c000a234c1fa39\",\"parents\":[\"0f3443ca99f4abc236c549a1fca808476e9e5441\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:05 GMT", + "Date": "Sun, 17 Nov 2019 07:49:16 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4907", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d82e13fb5b2e636b7be9bd7d3edc66ca\"", + "ETag": "\"403c496bfc077dd8c729f1132bd6f5a6\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/644f48d570df555b0507018503195f407472356f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1523,27 +1133,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AED:2B24:17515C2:1C5787E:5D77A688", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34218:2EA7EAA:37446EB:5DD0FB7B" }, - "response": "{\n \"sha\": \"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5ZDM3MDFiOTJmYWVjMDRkM2U4NGNkZDMwZTdhNzJiYTIxNmUyZWQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:35:05Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:35:05Z\"\n },\n \"tree\": {\n \"sha\": \"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"644f48d570df555b0507018503195f407472356f\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjY0NGY0OGQ1NzBkZjU1NWIwNTA3MDE4NTAzMTk1ZjQwNzQ3MjM1NmY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/644f48d570df555b0507018503195f407472356f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/644f48d570df555b0507018503195f407472356f\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:16Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:49:16Z\"\n },\n \"tree\": {\n \"sha\": \"39c91c977495f69c6e449c1c56c000a234c1fa39\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/39c91c977495f69c6e449c1c56c000a234c1fa39\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0f3443ca99f4abc236c549a1fca808476e9e5441\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/0f3443ca99f4abc236c549a1fca808476e9e5441\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\"force\":false}", + "body": "{\"sha\":\"644f48d570df555b0507018503195f407472356f\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:06 GMT", + "Date": "Sun, 17 Nov 2019 07:49:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4906", - "X-RateLimit-Reset": "1568126016", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"992356b5842a48142205593759f8d157\"", + "ETag": "W/\"386543f3e38e02f3458f0a18c4707591\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1555,19 +1164,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEE:3ED6F:1A7FF:23409:5D77A689", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192D:470CB:2C77AC5:34A1DCC:5DD0FB7C", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"644f48d570df555b0507018503195f407472356f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/644f48d570df555b0507018503195f407472356f\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5Njcy\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:35:08 GMT", + "Date": "Sun, 17 Nov 2019 07:49:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1576,8 +1184,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4914", - "X-RateLimit-Reset": "1568126025", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1587,11 +1195,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AF1:B4E0:1646D03:1B1BB66:5D77A68B", - "content-length": "665", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1932:34218:2EA8168:3744A3A:5DD0FB7D", + "content-length": "665" }, - "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"number\":6,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5Njcy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\",\"number\":6,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "193F:2E3EE:22A5271:291FF2D:5DD0FB80", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjRhNDc0M2NhZTk2YWVhMWViMTEyYWM2MzNjMDFkZWI0ZjkzNjA3MTc=\",\"sha\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json index 2877c3fa..b2606991 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:05 GMT", + "Date": "Sun, 17 Nov 2019 07:43:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4844", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a276b43fb76d38782de30a12a20e2a9c\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB9:2CFEA:6669532:7A19171:5DCBB6D8", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470CB:2C6084C:3485E79:5DD0FA38", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:05 GMT", + "Date": "Sun, 17 Nov 2019 07:43:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4843", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC1:450E4:892AF29:A36371C:5DCBB6D9", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DB:1C993:2CA73CE:34F89CC:5DD0FA39", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -69,7 +67,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:06 GMT", + "Date": "Sun, 17 Nov 2019 07:43:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -78,8 +76,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4919", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -89,9 +87,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC6:BBFA:879A193:A232A65:5DCBB6DA", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DF:2E3F0:2F2F8CE:37D06C0:5DD0FA39", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -101,7 +98,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:06 GMT", + "Date": "Sun, 17 Nov 2019 07:43:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -110,8 +107,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4918", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -121,43 +118,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC7:BBF8:68E925A:7D20C89:5DCBB6DA", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E0:2E3EE:228FFF0:2906E13:5DD0FA3A", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4917", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FCD:33B09:6948237:7DADB9A:5DCBB6DB", - "content-length": "1837", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -165,7 +129,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:07 GMT", + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -174,8 +138,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4916", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -185,19 +149,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FCC:3A594:1BA0523:2127CA6:5DCBB6DB", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E5:470C9:220FF1D:28786A4:5DD0FA3B", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:08 GMT", + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -206,8 +169,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4914", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -217,75 +180,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD3:2CFEA:6669A51:7A1979C:5DCBB6DB", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E6:34218:2E8B3AF:3722A71:5DD0FA3B", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4915", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD0:3A597:8DDF69D:A8A40AE:5DCBB6DB", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4913", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD1:33B08:3EB58CA:4AD292C:5DCBB6DB", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -293,7 +191,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:08 GMT", + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -302,8 +200,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4912", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -313,11 +211,72 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FCF:2CFEA:6669A55:7A1979E:5DCBB6DB", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EC:1C985:1305E43:169C5DA:5DD0FA3B", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19F0:34215:7768C7:8EFA14:5DD0FA3B", + "content-length": "16478" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19ED:23E1B:2DCE674:3647CCE:5DD0FA3B", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -325,7 +284,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:08 GMT", + "Date": "Sun, 17 Nov 2019 07:43:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +293,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4911", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,29 +304,59 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FCE:33B0A:8A3C753:A4E46A2:5DCBB6DB", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EB:8070:224D5EC:28BC974:5DD0FA3B", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19F3:470C9:220FFD4:2878782:5DD0FA3B", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:11 GMT", + "Date": "Sun, 17 Nov 2019 07:43:59 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", + "Content-Length": "464", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4842", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"145e119edc06cab5def8018efcfd66687c693d0e\"", - "Last-Modified": "Wed, 13 Nov 2019 07:54:28 GMT", + "ETag": "\"a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\"", + "Last-Modified": "Sun, 17 Nov 2019 07:43:14 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -379,10 +368,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE3:BBFA:879AAD5:A23357A:5DCBB6DF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1800:1C993:2CA7A00:34F9133:5DD0FA3E" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"404571589b8001de72214348962a6b6825765d4f\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"second title\",\"description\":\"second description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", "status": 200 }, { @@ -390,7 +378,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:12 GMT", + "Date": "Sun, 17 Nov 2019 07:44:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -399,8 +387,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4910", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -410,11 +398,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE8:3A597:8DDFD6F:A8A48DD:5DCBB6DF", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1802:470CB:2C60FB7:3486767:5DD0FA3F", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -422,7 +409,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:12 GMT", + "Date": "Sun, 17 Nov 2019 07:44:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -431,8 +418,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4909", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -442,11 +429,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE9:33B0A:8A3CF25:A4E5021:5DCBB6E0", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1806:2E3F0:2F300A6:37D1042:5DD0FA40", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -454,17 +440,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:13 GMT", + "Date": "Sun, 17 Nov 2019 07:44:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4841", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f8eeaba8ad8eaebf5e283dc5767e39a\"", + "ETag": "\"360f2cadf1abf473f2e0316bb085e9c9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -477,8 +463,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEE:450D5:3AC4D9C:465A7DD:5DCBB6E1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180B:1C993:2CA7C4B:34F9405:5DD0FA40" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -488,7 +473,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:14 GMT", + "Date": "Sun, 17 Nov 2019 07:44:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -497,8 +482,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4908", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -508,289 +493,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FEF:450D6:69F4CBC:7E301D9:5DCBB6E1", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180C:34218:2E8BDFD:372368C:5DD0FA41", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4907", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FF4:33B08:3EB5D23:4AD2E6B:5DCBB6E2", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4906", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FF5:43EF3:3A1C8B0:45A1AF9:5DCBB6E2", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4905", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FF6:2CFED:8FF0D6E:AB5BB2D:5DCBB6E2", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4904", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FF7:33B09:6948C0A:7DAE750:5DCBB6E2", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4903", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FFC:450D6:69F4F17:7E3049D:5DCBB6E3", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4902", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E04:450E4:892BF8D:A364AA2:5DCBB6E3", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:16 GMT", + "Date": "Sun, 17 Nov 2019 07:44:02 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", + "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4840", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"afc456f12c53acba87cae8c3f305fac9\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E05:43EF8:89B5925:A3FF227:5DCBB6E4", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4839", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bd0a6386e55d2da10c88a8b86b291814\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E07:43EF8:89B5A42:A3FF37E:5DCBB6E5", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11731", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4838", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5ef5b0dadf07cc671aa57ea16f105174\"", + "ETag": "\"d1806b8a8fb7174cac5409ac1b14f80b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -803,8 +527,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E09:450D5:3AC505D:465AB31:5DCBB6E5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1811:470CB:2C61407:3486C76:5DD0FA42" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -814,20 +537,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:19 GMT", + "Date": "Sun, 17 Nov 2019 07:44:03 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1499", + "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4837", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5b7331161457d2669df9a0c170ec453b\"", + "ETag": "\"0c80e982a35c345f5bbdfddc6aef0523\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c313126b47f3a805c94563eea780678c94e98bb5", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4efccdccc8a19422a70bd87c24d7a911f34b0aaf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -837,18 +560,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E0D:3A597:8DE074B:A8A54CB:5DCBB6E6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1816:34217:22BE376:2947438:5DD0FA42" }, - "response": "{\n \"sha\": \"c313126b47f3a805c94563eea780678c94e98bb5\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmMzMTMxMjZiNDdmM2E4MDVjOTQ1NjNlZWE3ODA2NzhjOTRlOThiYjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c313126b47f3a805c94563eea780678c94e98bb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/c313126b47f3a805c94563eea780678c94e98bb5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:18Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:18Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjRlZmNjZGNjYzhhMTk0MjJhNzBiZDg3YzI0ZDdhOTExZjM0YjBhYWY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\n \"html_url\": \"https://github.com/owner/repo/commit/4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:03Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:20 GMT", + "Date": "Sun, 17 Nov 2019 07:44:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -857,8 +579,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4901", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -868,28 +590,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E12:3A597:8DE087A:A8A5638:5DCBB6E7", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181B:2E3F0:2F3072B:37D17C8:5DD0FA43", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmMzMTMxMjZiNDdmM2E4MDVjOTQ1NjNlZWE3ODA2NzhjOTRlOThiYjU=\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkyMDU4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjRlZmNjZGNjYzhhMTk0MjJhNzBiZDg3YzI0ZDdhOTExZjM0YjBhYWY=\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5Mzkw\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:21 GMT", + "Date": "Sun, 17 Nov 2019 07:44:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4836", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cee8e741ad476e39e66f638e92dee4af\"", - "Last-Modified": "Wed, 13 Nov 2019 07:52:14 GMT", + "ETag": "W/\"0ddcc6845ecdf2c0517d5c10a9035db0\"", + "Last-Modified": "Sun, 17 Nov 2019 07:41:08 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -902,32 +623,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1B:3A596:6563E90:791978A:5DCBB6E9", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1821:2E3F0:2F30AD2:37D1C17:5DD0FA45", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjMzEzMTI2YjQ3ZjNhODA1Yzk0NTYzZWVhNzgwNjc4Yzk0ZTk4YmI1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0ZWZjY2RjY2M4YTE5NDIyYTcwYmQ4N2MyNGQ3YTkxMWYzNGIwYWFmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:22 GMT", + "Date": "Sun, 17 Nov 2019 07:44:06 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4835", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0066911ad0fbe1506a0f341cda49e254\"", + "ETag": "\"1599b7f2276c2ddf6177a3f8fc162aa7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/6853d90b0b8db5635f58c188fe59bb0553a928d6", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/56615c345fb64cacf0c49ee6a010258dd393a113", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -937,95 +657,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1C:3A596:6563F0A:7919819:5DCBB6E9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1825:34215:776BCD:8EFDA3:5DD0FA46" }, - "response": "{\n \"sha\": \"6853d90b0b8db5635f58c188fe59bb0553a928d6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6853d90b0b8db5635f58c188fe59bb0553a928d6\"\n}\n", + "response": "{\n \"sha\": \"56615c345fb64cacf0c49ee6a010258dd393a113\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/56615c345fb64cacf0c49ee6a010258dd393a113\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4899", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E24:43EEE:1D8BAD5:2353BA6:5DCBB6EA", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmY3NTFiYjYwZmQzZTM5YjNjNWFiNTIzZmUyMTRjYTJmYjYzYjQ4ZDk=\",\"sha\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzplZmZjZWM5MGI0YjY3ODQ4ZGU3NDliMzM5MDFiMjMzODlkZjZjMGMy\",\"sha\":\"effcec90b4b67848de749b33901b23389df6c0c2\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"145e119edc06cab5def8018efcfd66687c693d0e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4900", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E25:43EE6:28264D:31517B:5DCBB6EA", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmY3NTFiYjYwZmQzZTM5YjNjNWFiNTIzZmUyMTRjYTJmYjYzYjQ4ZDk=\",\"sha\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6853d90b0b8db5635f58c188fe59bb0553a928d6\"}]}", + "body": "{\"base_tree\":\"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"56615c345fb64cacf0c49ee6a010258dd393a113\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:23 GMT", + "Date": "Sun, 17 Nov 2019 07:44:07 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "892", + "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4834", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"baf79f694d16a958ffdcb406f5dba06e\"", + "ETag": "\"9ccacd15e5f6227eb1dfb9d69e9fad8b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/d6f4afa4d2edb69d50a71efa1d020b8a89124785", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8f64ccf7778e0bbf176152a0b92bbe2338c280e9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1035,31 +690,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E27:43EF6:67370AD:7B3793D:5DCBB6EA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182A:470CB:2C61B73:348753E:5DD0FA46" }, - "response": "{\n \"sha\": \"d6f4afa4d2edb69d50a71efa1d020b8a89124785\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d6f4afa4d2edb69d50a71efa1d020b8a89124785\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6853d90b0b8db5635f58c188fe59bb0553a928d6\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6853d90b0b8db5635f58c188fe59bb0553a928d6\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"8f64ccf7778e0bbf176152a0b92bbe2338c280e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8f64ccf7778e0bbf176152a0b92bbe2338c280e9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"56615c345fb64cacf0c49ee6a010258dd393a113\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/56615c345fb64cacf0c49ee6a010258dd393a113\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d6f4afa4d2edb69d50a71efa1d020b8a89124785\",\"parents\":[\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8f64ccf7778e0bbf176152a0b92bbe2338c280e9\",\"parents\":[\"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:24 GMT", + "Date": "Sun, 17 Nov 2019 07:44:08 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1505", + "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4833", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4e0447bd1a7d8b28fe499a7e8c8c1813\"", + "ETag": "\"4b814fc49becc3cb12fdc6318e1979c4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/fa9e41b1188481056a99fcda7646f22ca58ed350", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7e0033629f8f61d6a2192d64069cad7e1d5b0918", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1069,27 +723,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2A:BBF8:68EA553:7D22368:5DCBB6EB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182B:1C985:13066A7:169CF9C:5DD0FA47" }, - "response": "{\n \"sha\": \"fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmZhOWU0MWIxMTg4NDgxMDU2YTk5ZmNkYTc2NDZmMjJjYTU4ZWQzNTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"html_url\": \"https://github.com/owner/repo/commit/fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:24Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:24Z\"\n },\n \"tree\": {\n \"sha\": \"d6f4afa4d2edb69d50a71efa1d020b8a89124785\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d6f4afa4d2edb69d50a71efa1d020b8a89124785\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"html_url\": \"https://github.com/owner/repo/commit/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjdlMDAzMzYyOWY4ZjYxZDZhMjE5MmQ2NDA2OWNhZDdlMWQ1YjA5MTg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"html_url\": \"https://github.com/owner/repo/commit/7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:08Z\"\n },\n \"tree\": {\n \"sha\": \"8f64ccf7778e0bbf176152a0b92bbe2338c280e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8f64ccf7778e0bbf176152a0b92bbe2338c280e9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"html_url\": \"https://github.com/owner/repo/commit/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\",\"force\":false}", + "body": "{\"sha\":\"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:25 GMT", + "Date": "Sun, 17 Nov 2019 07:44:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4832", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6878db6fa63c58a1bb70f25c80e60df9\"", + "ETag": "W/\"d97f93cba3369a3b515afb9bb688d180\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1101,11 +754,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2F:BBF8:68EA64B:7D224A1:5DCBB6EC", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2CA8938:34FA35E:5DD0FA48", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fa9e41b1188481056a99fcda7646f22ca58ed350\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7e0033629f8f61d6a2192d64069cad7e1d5b0918\"\n }\n}\n", "status": 200 }, { @@ -1113,7 +765,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:26 GMT", + "Date": "Sun, 17 Nov 2019 07:44:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1122,8 +774,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4898", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1133,19 +785,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E35:33B09:694993D:7DAF726:5DCBB6ED", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1839:806C:8638C9:9FA623:5DD0FA49", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:27 GMT", + "Date": "Sun, 17 Nov 2019 07:44:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1154,8 +805,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4897", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1165,11 +816,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E39:33B0A:8A3E2D1:A4E684D:5DCBB6EE", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183A:1C98C:22FE79F:2968B4F:5DD0FA4A", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmMzMTMxMjZiNDdmM2E4MDVjOTQ1NjNlZWE3ODA2NzhjOTRlOThiYjU=\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjRlZmNjZGNjYzhhMTk0MjJhNzBiZDg3YzI0ZDdhOTExZjM0YjBhYWY=\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1177,7 +827,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:27 GMT", + "Date": "Sun, 17 Nov 2019 07:44:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1186,8 +836,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4896", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1197,11 +847,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3A:3A595:3DCFA4D:49E4E39:5DCBB6EE", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183E:34218:2E8CEAA:37249C1:5DD0FA4A", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAyNDIzOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkyMDU4\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjEzODYxOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5Mzkw\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1209,7 +858,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:27 GMT", + "Date": "Sun, 17 Nov 2019 07:44:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1218,8 +867,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4895", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1229,28 +878,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3F:450E4:892D0AC:A365F52:5DCBB6EF", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1840:470CB:2C620D6:3487BA0:5DD0FA4B", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:28 GMT", + "Date": "Sun, 17 Nov 2019 07:44:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4831", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6878db6fa63c58a1bb70f25c80e60df9\"", - "Last-Modified": "Wed, 13 Nov 2019 07:52:14 GMT", + "ETag": "W/\"d97f93cba3369a3b515afb9bb688d180\"", + "Last-Modified": "Sun, 17 Nov 2019 07:41:08 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1263,32 +911,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E46:2CFED:8FF21EB:AB5D3E7:5DCBB6F0", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1845:8072:2D5FD45:35E1029:5DD0FA4B", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fa9e41b1188481056a99fcda7646f22ca58ed350\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7e0033629f8f61d6a2192d64069cad7e1d5b0918\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjMzEzMTI2YjQ3ZjNhODA1Yzk0NTYzZWVhNzgwNjc4Yzk0ZTk4YmI1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0ZWZjY2RjY2M4YTE5NDIyYTcwYmQ4N2MyNGQ3YTkxMWYzNGIwYWFmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:29 GMT", + "Date": "Sun, 17 Nov 2019 07:44:12 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4830", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fc40b319bf378d54b6445b2d2dc61a7f\"", + "ETag": "\"b27dcda95f3f39f8da92a9750d6a81ee\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/3fc3bc8f5e8ee0de136551626f095390e56d6bdf", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/9d7947dbcdf62513234a366410e2721010d82f71", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1298,95 +945,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E47:BBF8:68EAA6E:7D229AE:5DCBB6F0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1848:23E1A:2152158:278E7CF:5DD0FA4C" }, - "response": "{\n \"sha\": \"3fc3bc8f5e8ee0de136551626f095390e56d6bdf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3fc3bc8f5e8ee0de136551626f095390e56d6bdf\"\n}\n", + "response": "{\n \"sha\": \"9d7947dbcdf62513234a366410e2721010d82f71\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d7947dbcdf62513234a366410e2721010d82f71\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4894", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E4B:3A596:6564733:791A205:5DCBB6F1", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmZhOWU0MWIxMTg4NDgxMDU2YTk5ZmNkYTc2NDZmMjJjYTU4ZWQzNTA=\",\"sha\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:55:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4893", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E4A:450D5:3AC5733:465B3A2:5DCBB6F1", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmZhOWU0MWIxMTg4NDgxMDU2YTk5ZmNkYTc2NDZmMjJjYTU4ZWQzNTA=\",\"sha\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzpkNmY0YWZhNGQyZWRiNjlkNTBhNzFlZmExZDAyMGI4YTg5MTI0Nzg1\",\"sha\":\"d6f4afa4d2edb69d50a71efa1d020b8a89124785\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"6853d90b0b8db5635f58c188fe59bb0553a928d6\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"fa9e41b1188481056a99fcda7646f22ca58ed350\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3fc3bc8f5e8ee0de136551626f095390e56d6bdf\"}]}", + "body": "{\"base_tree\":\"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"9d7947dbcdf62513234a366410e2721010d82f71\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:30 GMT", + "Date": "Sun, 17 Nov 2019 07:44:13 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "892", + "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4829", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4ed8e48bbfd31605e3131ca4eba17cae\"", + "ETag": "\"fe517262cb5b73050575102266fdd7b8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/1158d31aa812410099c52d2fe64c6106d91da6c0", + "Location": "https://api.github.com/repos/owner/repo/git/trees/47f751b70249548fe0474c98311046a31e7d1206", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1396,31 +978,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E50:450D6:69F6010:7E31904:5DCBB6F2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:8068:9DBC5:C1BB1:5DD0FA4D" }, - "response": "{\n \"sha\": \"1158d31aa812410099c52d2fe64c6106d91da6c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1158d31aa812410099c52d2fe64c6106d91da6c0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3fc3bc8f5e8ee0de136551626f095390e56d6bdf\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3fc3bc8f5e8ee0de136551626f095390e56d6bdf\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"47f751b70249548fe0474c98311046a31e7d1206\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/47f751b70249548fe0474c98311046a31e7d1206\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d7947dbcdf62513234a366410e2721010d82f71\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d7947dbcdf62513234a366410e2721010d82f71\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1158d31aa812410099c52d2fe64c6106d91da6c0\",\"parents\":[\"fa9e41b1188481056a99fcda7646f22ca58ed350\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"47f751b70249548fe0474c98311046a31e7d1206\",\"parents\":[\"7e0033629f8f61d6a2192d64069cad7e1d5b0918\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:31 GMT", + "Date": "Sun, 17 Nov 2019 07:44:14 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1505", + "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4828", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0abb0c978f291127be219130b8d64d42\"", + "ETag": "\"e00eab061f0f4f636d81b3d1416d34ee\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/b23b1345c540627cf42e37b2b39285019fe32e4e", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ab1d5ac72445cff90d8d16897df4a74a4a7c707a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1430,27 +1011,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E52:2CFED:8FF2635:AB5D8FC:5DCBB6F2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1852:34217:22BF16D:2948444:5DD0FA4D" }, - "response": "{\n \"sha\": \"b23b1345c540627cf42e37b2b39285019fe32e4e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmIyM2IxMzQ1YzU0MDYyN2NmNDJlMzdiMmIzOTI4NTAxOWZlMzJlNGU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b23b1345c540627cf42e37b2b39285019fe32e4e\",\n \"html_url\": \"https://github.com/owner/repo/commit/b23b1345c540627cf42e37b2b39285019fe32e4e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:55:31Z\"\n },\n \"tree\": {\n \"sha\": \"1158d31aa812410099c52d2fe64c6106d91da6c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1158d31aa812410099c52d2fe64c6106d91da6c0\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fa9e41b1188481056a99fcda7646f22ca58ed350\",\n \"html_url\": \"https://github.com/owner/repo/commit/fa9e41b1188481056a99fcda7646f22ca58ed350\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOmFiMWQ1YWM3MjQ0NWNmZjkwZDhkMTY4OTdkZjRhNzRhNGE3YzcwN2E=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:44:14Z\"\n },\n \"tree\": {\n \"sha\": \"47f751b70249548fe0474c98311046a31e7d1206\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/47f751b70249548fe0474c98311046a31e7d1206\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7e0033629f8f61d6a2192d64069cad7e1d5b0918\",\n \"html_url\": \"https://github.com/owner/repo/commit/7e0033629f8f61d6a2192d64069cad7e1d5b0918\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"b23b1345c540627cf42e37b2b39285019fe32e4e\",\"force\":false}", + "body": "{\"sha\":\"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:32 GMT", + "Date": "Sun, 17 Nov 2019 07:44:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4827", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"45a0097ecb7f1dd582478f4662347599\"", + "ETag": "W/\"62d495286bf6e504ad26b4bfb4fffce4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1462,19 +1042,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E56:450E4:892D6F1:A3666B7:5DCBB6F3", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1853:34218:2E8D51D:3725132:5DD0FA4E", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"b23b1345c540627cf42e37b2b39285019fe32e4e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b23b1345c540627cf42e37b2b39285019fe32e4e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:32 GMT", + "Date": "Sun, 17 Nov 2019 07:44:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1483,8 +1062,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4892", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1494,28 +1073,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E5B:33B07:19C215E:1F18AD7:5DCBB6F4", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185D:1C993:2CA9295:34FAE85:5DD0FA4F", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmMzMTMxMjZiNDdmM2E4MDVjOTQ1NjNlZWE3ODA2NzhjOTRlOThiYjU=\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjRlZmNjZGNjYzhhMTk0MjJhNzBiZDg3YzI0ZDdhOTExZjM0YjBhYWY=\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"merge_method\":\"merge\"}", "method": "PUT", "url": "/repos/owner/repo/pulls/3/merge?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:34 GMT", + "Date": "Sun, 17 Nov 2019 07:44:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4826", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f6a456f9b70a0ace9f7257edc018164f\"", + "ETag": "W/\"8d474f75ab00ced56450407ae9f3d309\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1527,19 +1105,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5C:BBF5:3C19CD7:47D2D80:5DCBB6F4", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185C:470CB:2C626BA:34882A0:5DD0FA4F", + "content-length": "123" }, - "response": "{\n \"sha\": \"de0f07ead61d12f2d72baef298db3faa960c82a1\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"046523f2cdac466d3ef0af6a00f6e1a9cc7d2e78\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:35 GMT", + "Date": "Sun, 17 Nov 2019 07:44:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1548,8 +1125,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4891", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1559,9 +1136,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E65:3A595:3DCFF4A:49E544C:5DCBB6F6", - "content-length": "81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1862:34217:22BF54B:29488D1:5DD0FA51", + "content-length": "81" }, "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 @@ -1571,7 +1147,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:36 GMT", + "Date": "Sun, 17 Nov 2019 07:44:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1580,8 +1156,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4890", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1591,19 +1167,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6A:450D6:69F6643:7E3208C:5DCBB6F7", - "content-length": "413", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1867:23E1A:21527C1:278EF50:5DD0FA52", + "content-length": "413" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:55:38 GMT", + "Date": "Sun, 17 Nov 2019 07:44:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1612,8 +1187,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4889", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1623,11 +1198,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E79:2CFE4:198625F:1E88200:5DCBB6F9", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187A:23E1A:2152AAA:278F2B5:5DD0FA55", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmMzMTMxMjZiNDdmM2E4MDVjOTQ1NjNlZWE3ODA2NzhjOTRlOThiYjU=\",\"sha\":\"c313126b47f3a805c94563eea780678c94e98bb5\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjRlZmNjZGNjYzhhMTk0MjJhNzBiZDg3YzI0ZDdhOTExZjM0YjBhYWY=\",\"sha\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json index e7de7160..f29c45ea 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:34 GMT", + "Date": "Sun, 17 Nov 2019 07:49:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A54:2B24:2A099F6:3342D74:5D789232", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D3:2E3EE:22A6E06:29220A4:5DD0FB9E", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:35 GMT", + "Date": "Sun, 17 Nov 2019 07:49:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,57 +53,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A56:244EB:2A687AF:33AB1FE:5D789233", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DB:1C993:2CC30B1:3519E99:5DD0FB9E", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1568186244", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A58:244E7:1F41F95:263D986:5D789233", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 207737967,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:20:36Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:37 GMT", + "Date": "Sun, 17 Nov 2019 07:49:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cdc4f6dd872912fd0c3112eb26138fe0\"", - "Last-Modified": "Wed, 11 Sep 2019 06:20:26 GMT", + "ETag": "W/\"8f431a8c60511c248ad1634e8e524775\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -116,11 +85,70 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5A:15110:2B8280D:34F981B:5D789234", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DC:1C993:2CC316B:3519F6B:5DD0FB9F", + "content-length": "22145" }, - "response": "{\n \"id\": 207737967,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:20:36Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:49:18Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19E2:8072:2D7EF0D:360560C:5DD0FB9F" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:49:18Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8f431a8c60511c248ad1634e8e524775\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19E6:34217:22D29D8:295FC70:5DD0FBA0", + "content-length": "22145" + }, + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:45:10Z\",\n \"pushed_at\": \"2019-11-17T07:49:18Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:49:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { @@ -128,7 +156,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:37 GMT", + "Date": "Sun, 17 Nov 2019 07:49:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -137,8 +165,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -148,9 +176,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5C:15110:2B828E9:34F9923:5D789235", - "content-length": "176", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E7:470C7:1494857:1843593:5DD0FBA1", + "content-length": "176" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -160,7 +187,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:38 GMT", + "Date": "Sun, 17 Nov 2019 07:49:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -169,8 +196,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -180,43 +207,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A63:2B24:2A09EC1:3343324:5D789236", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EC:1C993:2CC34C6:351A36B:5DD0FBA1", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:40 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A6A:2B24:2A0A0D4:33435A7:5D789237", - "content-length": "1218", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -224,7 +218,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:41 GMT", + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -233,8 +227,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -244,19 +238,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A78:15110:2B82CFB:34F9E0D:5D789238", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F2:2E3F0:2F4C379:37F2CBF:5DD0FBA2", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNDI3Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:41 GMT", + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -265,8 +258,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -276,75 +269,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A8E:3ED82:2B8ADAB:3511E6D:5D789239", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F1:1C993:2CC35B8:351A488:5DD0FBA2", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A7E:9D20:1EDA212:25C937A:5D789239", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:42 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA4:9D20:1EDA2F6:25C9485:5D78923A", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -352,7 +280,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:42 GMT", + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -361,8 +289,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -372,11 +300,72 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA2:B4DC:1305AD9:1729858:5D78923A", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FB:1C985:1313F72:16ACD0F:5DD0FBA3", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19F9:8072:2D7F3D7:3605BB6:5DD0FBA3", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19F8:470C5:85D033:9F08A9:5DD0FBA3", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -384,7 +373,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:43 GMT", + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -393,8 +382,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -404,24 +393,59 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA6:1510F:1FBA039:26B4786:5D78923A", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FC:470C9:22276E0:28942F3:5DD0FBA3", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:49:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19FA:2E3EE:22A72D2:292265D:5DD0FBA3", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:47 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 07:49:58 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "553", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3f383e06971f442e645af4290ac9a0fd5167dbd6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:49:16 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -433,19 +457,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB2:2B19:129AECF:16B415B:5D78923F", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1809:34214:27FDA0:2FF528:5DD0FBA6" }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", - "status": 404 + "response": "{\"type\":\"PR\",\"pr\":{\"number\":6,\"head\":{\"sha\":\"4a4743cae96aea1eb112ac633c01deb4f9360717\"}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:48 GMT", + "Date": "Sun, 17 Nov 2019 07:49:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -454,8 +476,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -465,11 +487,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB4:2B24:2A0AC58:334437C:5D789240", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180A:23E1A:2169AD3:27AA1D1:5DD0FBA7", + "content-length": "189" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:50:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "180F:2E3EE:22A7717:2922B86:5DD0FBA7", + "content-length": "106" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -477,17 +529,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:49 GMT", + "Date": "Sun, 17 Nov 2019 07:50:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"eefb1bbac2d576832c388bffb12640ec\"", + "ETag": "\"4fb898f9e4ad7b76619653a9688a2b6c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -500,8 +552,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB6:3ED7B:208CA70:27A1565:5D789240", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1815:34216:12F013C:1673581:5DD0FBA8" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -511,7 +562,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:49 GMT", + "Date": "Sun, 17 Nov 2019 07:50:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -520,8 +571,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -531,292 +582,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB8:B4DA:90F463:B11E8E:5D789241", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1816:34218:2EAB7C3:3748B4E:5DD0FBA9", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzM3OTY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABA:2B24:2A0AEE1:3344698:5D789242", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABC:B4DE:1FB9EC6:26B6228:5D789242", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABE:2B24:2A0AFDB:33447DA:5D789242", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC0:3ED82:2B8B9B5:3512D24:5D789242", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC6:2B1F:2001666:2730DE8:5D789243", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC4:2B19:129B10D:16B440D:5D789243", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bfba51dd84c6316f0ee10a39c8f264e0\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC8:B4E0:287651C:3156EB9:5D789244", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c111469e9ec4ede4536788cbb353d662\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACA:3ED77:12B9A9D:16C8A46:5D789245", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:54 GMT", + "Date": "Sun, 17 Nov 2019 07:50:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"921068ab97be5c76dde26f5208f57d24\"", + "ETag": "\"d5ce5b24c947cb2644dfcbbce4ce120c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -826,31 +616,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACE:244E7:1F42EE1:263EC98:5D789246", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181B:2E3ED:135082C:170D794:5DD0FBA9" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:55 GMT", + "Date": "Sun, 17 Nov 2019 07:50:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fc569025428672b2cf8a19f7ecc72491\"", + "ETag": "\"255104e7c84f07816a6967fd171f43bd\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/717fd631b102840989f206b06dd5474503dc64fd", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -860,18 +649,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD0:9D1F:11DFA0A:15DCDA0:5D789246", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1820:34216:12F0345:16737E6:5DD0FBAA" }, - "response": "{\n \"sha\": \"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:55Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:55Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"717fd631b102840989f206b06dd5474503dc64fd\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjcxN2ZkNjMxYjEwMjg0MDk4OWYyMDZiMDZkZDU0NzQ1MDNkYzY0ZmQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/717fd631b102840989f206b06dd5474503dc64fd\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/717fd631b102840989f206b06dd5474503dc64fd\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:02Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:02Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:57 GMT", + "Date": "Sun, 17 Nov 2019 07:50:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -880,8 +668,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -891,24 +679,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD2:244E4:130BE35:1729FD6:5D789247", - "content-length": "604", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1821:2E3EE:22A7CAB:2923250:5DD0FBAB", + "content-length": "604" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE0Mjc3OjcxN2ZkNjMxYjEwMjg0MDk4OWYyMDZiMDZkZDU0NzQ1MDNkYzY0ZmQ=\",\"sha\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:20:57 GMT", + "Date": "Sun, 17 Nov 2019 07:50:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"386543f3e38e02f3458f0a18c4707591\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -921,168 +712,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD6:244E4:130BECA:172A08F:5D789249", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1826:1C985:1314619:16AD50F:5DD0FBAC", + "content-length": "494" }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", - "status": 404 - }, - { - "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:58 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "212", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f09acff159b6357c193513dec4c8ac3b\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD9:2B24:2A0B90F:3345302:5D78924A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", - "status": 201 - }, - { - "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:20:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "571", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"01c65e5b3031d6df8517f910193f8fff\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADA:244E1:896635:A6F035:5D78924A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1156", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"09fccc1c0e8f29806bc824e386cf0dd6\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADC:15110:2B84626:34FBCA6:5D78924B", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:59Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:59Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/refs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "494", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b5a2fb4702e1e3411047e48f2d86acd2\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADE:9D1F:11DFCBA:15DD0CC:5D78924C", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"\n }\n}\n", - "status": 201 + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"644f48d570df555b0507018503195f407472356f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/644f48d570df555b0507018503195f407472356f\"\n }\n}\n", + "status": 200 }, { "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:02 GMT", + "Date": "Sun, 17 Nov 2019 07:50:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c6301aebfdcd6cc941fa425b66b8695f\"", + "ETag": "\"0de4b1230340abf262b4f0acbfcdace8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b85bd367fa4aff42497169e886ed253eab0233f2", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1092,95 +746,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE2:15110:2B8499D:34FC0EF:5D78924D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182B:1C96E:FF348:12BD34:5DD0FBAC" }, - "response": "{\n \"sha\": \"b85bd367fa4aff42497169e886ed253eab0233f2\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b85bd367fa4aff42497169e886ed253eab0233f2\"\n}\n", + "response": "{\n \"sha\": \"f8668de022cff09619d7e3bd10916c9b1e37fdae\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/f8668de022cff09619d7e3bd10916c9b1e37fdae\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AE4:1510E:12D13A0:17017D7:5D78924E", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:03 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AE3:2B1F:200217A:2731B53:5D78924E", - "content-length": "558", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2Nzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b85bd367fa4aff42497169e886ed253eab0233f2\"}]}", + "body": "{\"base_tree\":\"644f48d570df555b0507018503195f407472356f\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f8668de022cff09619d7e3bd10916c9b1e37fdae\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:04 GMT", + "Date": "Sun, 17 Nov 2019 07:50:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"03106e8280e98ffe62db6dbe5c529f19\"", + "ETag": "\"78fb1a5d4bd4e7229eadb4a6c2a6b226\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1190,31 +779,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE7:2B24:2A0C12D:3345CC5:5D78924F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2CC4792:351B9FB:5DD0FBAD" }, - "response": "{\n \"sha\": \"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ba3b4a1ca702408016f3ddab6e3731dd51382608\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ba3b4a1ca702408016f3ddab6e3731dd51382608\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"084d183f695e67dc990718da5818e3e6957ee12b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/084d183f695e67dc990718da5818e3e6957ee12b\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\"parents\":[\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\"parents\":[\"644f48d570df555b0507018503195f407472356f\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:05 GMT", + "Date": "Sun, 17 Nov 2019 07:50:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e199dd1e58225f6374bb36cb6d2b9c5b\"", + "ETag": "\"0e0f116b61f430f1c674daab7108f2e2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d7d4ecb78294cc72dc7a84aca07f545522fcab2f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1224,27 +812,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE8:244E1:896870:A6F2D9:5D789251", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1831:34218:2EAC18F:3749777:5DD0FBAE" }, - "response": "{\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:05Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:05Z\"\n },\n \"tree\": {\n \"sha\": \"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OmQ3ZDRlY2I3ODI5NGNjNzJkYzdhODRhY2EwN2Y1NDU1MjJmY2FiMmY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:06Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:06Z\"\n },\n \"tree\": {\n \"sha\": \"e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e3f15bf59673f0f2b6826ecc97cfc8d0ec9155a1\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"644f48d570df555b0507018503195f407472356f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/644f48d570df555b0507018503195f407472356f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/644f48d570df555b0507018503195f407472356f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"force\":false}", + "body": "{\"sha\":\"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:06 GMT", + "Date": "Sun, 17 Nov 2019 07:50:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"692944de6a27ef7aa178a9fc1829f939\"", + "ETag": "W/\"e777297dc566a3c4aa365c2c68cb6f6a\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1256,11 +843,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AED:2B24:2A0C586:33461E7:5D789252", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1836:34217:22D3B40:29611AF:5DD0FBAF", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\"\n }\n}\n", "status": 200 }, { @@ -1268,7 +854,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:08 GMT", + "Date": "Sun, 17 Nov 2019 07:50:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1277,8 +863,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1288,28 +874,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AF4:B4DC:1306AD4:172AB84:5D789254", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183F:23E1B:2DECC6B:366C11A:5DD0FBB0", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:11 GMT", + "Date": "Sun, 17 Nov 2019 07:50:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"90b0a35a7b2464018aca820f7b47fda6\"", - "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "ETag": "W/\"bff671adf5b7b878d7eb8cecb8dc70a9\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1322,11 +907,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0B:244EB:2A6B5AA:33AE9FA:5D789257", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1844:2E3EE:22A84F9:2923C5B:5DD0FBB1", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"717fd631b102840989f206b06dd5474503dc64fd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/717fd631b102840989f206b06dd5474503dc64fd\"\n }\n }\n]\n", "status": 200 }, { @@ -1334,7 +918,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:12 GMT", + "Date": "Sun, 17 Nov 2019 07:50:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1343,8 +927,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1354,11 +938,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B0C:244EB:2A6B6D8:33AEB5C:5D789257", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1845:8072:2D80D10:36079A5:5DD0FBB2", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1366,7 +949,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:13 GMT", + "Date": "Sun, 17 Nov 2019 07:50:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1375,8 +958,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1386,19 +969,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B0D:244EB:2A6B8F7:33AEDDD:5D789259", - "content-length": "92", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184A:2E3F0:2F4DDC3:37F4C4C:5DD0FBB2", + "content-length": "92" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:14 GMT", + "Date": "Sun, 17 Nov 2019 07:50:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1407,8 +989,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1418,28 +1000,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B0F:15110:2B85E8C:34FD991:5D789259", - "content-length": "595", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184B:2E3F0:2F4DEAE:37F4D65:5DD0FBB3", + "content-length": "595" }, - "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NzUz\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"number\":7,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:15 GMT", + "Date": "Sun, 17 Nov 2019 07:50:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"692944de6a27ef7aa178a9fc1829f939\"", - "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "ETag": "W/\"e777297dc566a3c4aa365c2c68cb6f6a\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1452,32 +1033,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B10:9D20:1EDC430:25CBCB4:5D78925B", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1854:470C7:1495411:184440F:5DD0FBB4", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsic2hhIjoiNDJlYzFkZjQ1MzI2MGU0ZGQ4YjRhMGE0MGIzMjUzYWI0ZjE5MWM0ZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOnsic2hhIjoiNzE3ZmQ2MzFiMTAyODQwOTg5ZjIwNmIwNmRkNTQ3NDUwM2RjNjRmZCJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:16 GMT", + "Date": "Sun, 17 Nov 2019 07:50:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"13f2ba647d3e530f77e54851f8366d46\"", + "ETag": "\"dfe70768d58cc7ec3d93296572d85173\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/4959789c7c62d98e6ebf7abfeecb49448dc5e510", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1487,95 +1067,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B12:9D21:2901A94:321DDA2:5D78925B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1856:1C993:2CC5292:351C74A:5DD0FBB5" }, - "response": "{\n \"sha\": \"470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\"\n}\n", + "response": "{\n \"sha\": \"4959789c7c62d98e6ebf7abfeecb49448dc5e510\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4959789c7c62d98e6ebf7abfeecb49448dc5e510\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B16:1510F:1FBBF3D:26B6D84:5D78925C", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B15:B4E0:28785A4:31595ED:5D78925C", - "content-length": "685", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzoyNjczYmUyOTY5ZDA2YzlmMTE5OWYxMGQ2ZWJhYTQyMjJjNzA1ZGNm\",\"sha\":\"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"ba3b4a1ca702408016f3ddab6e3731dd51382608\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\"}]}", + "body": "{\"base_tree\":\"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4959789c7c62d98e6ebf7abfeecb49448dc5e510\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:17 GMT", + "Date": "Sun, 17 Nov 2019 07:50:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4940", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1294e4ccf48fbd15785a59a9109b8f21\"", + "ETag": "\"680c4191dae9e6d03e8552bcfbb4e65b\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/063c5956faf631ebcc7cfa63ccdd23f1b1294edf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1585,31 +1100,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B18:3ED7B:208E1EC:27A329D:5D78925D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185B:23E1B:2DED4E6:366CB3A:5DD0FBB6" }, - "response": "{\n \"sha\": \"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"063c5956faf631ebcc7cfa63ccdd23f1b1294edf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/063c5956faf631ebcc7cfa63ccdd23f1b1294edf\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"92748e892fedd547ad3f5fabbe75758eb0d402ab\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/92748e892fedd547ad3f5fabbe75758eb0d402ab\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\"parents\":[\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"063c5956faf631ebcc7cfa63ccdd23f1b1294edf\",\"parents\":[\"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:18 GMT", + "Date": "Sun, 17 Nov 2019 07:50:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4939", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"410a760a6385c5b333e973b96c26499b\"", + "ETag": "\"44732b149aabb9c44fed65e50545b9aa\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/33442a972ba6b351a4259958c3fad03e1ea0d77c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1619,27 +1133,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B1B:9D21:2901D1C:321E0B6:5D78925E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1860:8070:2264EA3:28D89C2:5DD0FBB6" }, - "response": "{\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:18Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:18Z\"\n },\n \"tree\": {\n \"sha\": \"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjMzNDQyYTk3MmJhNmIzNTFhNDI1OTk1OGMzZmFkMDNlMWVhMGQ3N2M=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:15Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:15Z\"\n },\n \"tree\": {\n \"sha\": \"063c5956faf631ebcc7cfa63ccdd23f1b1294edf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/063c5956faf631ebcc7cfa63ccdd23f1b1294edf\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d7d4ecb78294cc72dc7a84aca07f545522fcab2f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"force\":false}", + "body": "{\"sha\":\"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:19 GMT", + "Date": "Sun, 17 Nov 2019 07:50:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4938", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"97ee4968c2463a3910ad62cdc628a34e\"", + "ETag": "W/\"fe437091b6f47b29a9c986fdb90d8faf\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1651,19 +1164,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B1D:244EB:2A6C074:33AF706:5D78925E", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1861:34217:22D440D:2961C61:5DD0FBB7", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/33442a972ba6b351a4259958c3fad03e1ea0d77c\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NzUz\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:22 GMT", + "Date": "Sun, 17 Nov 2019 07:50:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1672,8 +1184,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1683,60 +1195,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B22:244E7:1F4490E:2640C63:5D789261", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186A:23E1B:2DED961:366D0A2:5DD0FBB8", + "content-length": "595" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3ODYzOjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B20:244E4:130CF07:172B3EB:5D789261", - "content-length": "595", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NzUz\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"number\":7,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:23 GMT", + "Date": "Sun, 17 Nov 2019 07:50:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4937", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"97ee4968c2463a3910ad62cdc628a34e\"", - "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "ETag": "W/\"fe437091b6f47b29a9c986fdb90d8faf\"", + "Last-Modified": "Sun, 17 Nov 2019 07:45:10 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1749,32 +1228,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B25:15110:2B86B00:34FE894:5D789262", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186F:2E3EC:796B23:918B20:5DD0FBB9", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/33442a972ba6b351a4259958c3fad03e1ea0d77c\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsic2hhIjoiNDJlYzFkZjQ1MzI2MGU0ZGQ4YjRhMGE0MGIzMjUzYWI0ZjE5MWM0ZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOnsic2hhIjoiNzE3ZmQ2MzFiMTAyODQwOTg5ZjIwNmIwNmRkNTQ3NDUwM2RjNjRmZCJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:23 GMT", + "Date": "Sun, 17 Nov 2019 07:50:19 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4936", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c385b43ba8a5f918967b0dee51ffc459\"", + "ETag": "\"0150ea25cdcf9e52a2f1ab9733dd0146\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/702b0efdf3d65dac52a60ed1a826edb76c0d86fc", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/3dff736f8c75b932a0a4084e0ba136d3e9520859", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1784,18 +1262,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B26:15110:2B86BBE:34FE983:5D789263", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1870:2E3F0:2F4E938:37F59E9:5DD0FBBA" }, - "response": "{\n \"sha\": \"702b0efdf3d65dac52a60ed1a826edb76c0d86fc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/702b0efdf3d65dac52a60ed1a826edb76c0d86fc\"\n}\n", + "response": "{\n \"sha\": \"3dff736f8c75b932a0a4084e0ba136d3e9520859\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3dff736f8c75b932a0a4084e0ba136d3e9520859\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"717fd631b102840989f206b06dd5474503dc64fd\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:24 GMT", + "Date": "Sun, 17 Nov 2019 07:50:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1804,8 +1281,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1815,64 +1292,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B28:2B24:2A0DDFA:3347F58:5D789264", - "content-length": "685", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1876:8070:2265330:28D8F55:5DD0FBBB", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzpiNWFkMDMxYTcyNzgyZWYzNjljYzNiOTBhM2NkODNjNDNmODkyM2Q1\",\"sha\":\"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjcxN2ZkNjMxYjEwMjg0MDk4OWYyMDZiMDZkZDU0NzQ1MDNkYzY0ZmQ=\",\"sha\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:21:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4940", - "X-RateLimit-Reset": "1568186258", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B2A:2B19:129C54D:16B5C35:5D789264", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"702b0efdf3d65dac52a60ed1a826edb76c0d86fc\"}]}", + "body": "{\"base_tree\":\"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3dff736f8c75b932a0a4084e0ba136d3e9520859\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:25 GMT", + "Date": "Sun, 17 Nov 2019 07:50:19 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4935", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7f915bb0898528e420ef5be8082e291d\"", + "ETag": "\"b1edff51ca9176ad37a2a11faccdc640\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7cbd7eb209249df5a7e6db1535e96e6dc1fadf74", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1882,31 +1326,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2D:B4E0:2878F17:315A17B:5D789264", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1875:1C993:2CC5A82:351D0EE:5DD0FBBB" }, - "response": "{\n \"sha\": \"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"668e8c033f4e79df21e01defe0d8b4b38542b439\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/668e8c033f4e79df21e01defe0d8b4b38542b439\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7cbd7eb209249df5a7e6db1535e96e6dc1fadf74\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7cbd7eb209249df5a7e6db1535e96e6dc1fadf74\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"51db887bfd84be2ad81703376ad593caf0bcb7ed\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/51db887bfd84be2ad81703376ad593caf0bcb7ed\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\"parents\":[\"cf5ee4a5c01a75e47ff044f283643297a6365096\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"7cbd7eb209249df5a7e6db1535e96e6dc1fadf74\",\"parents\":[\"33442a972ba6b351a4259958c3fad03e1ea0d77c\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:26 GMT", + "Date": "Sun, 17 Nov 2019 07:50:20 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4934", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5647c05cb3de0a02765fefd2d7e5e330\"", + "ETag": "\"cb90fee6d0c8891e2363790c01232146\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/91414a819a0bab259476d05693f13c904baa3ace", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1916,27 +1359,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2F:244E7:1F44C4D:264105A:5D789265", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187B:23E1B:2DEDE09:366D636:5DD0FBBB" }, - "response": "{\n \"sha\": \"916ce55de6858687ca46f489abf6919793f81850\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OjkxNmNlNTVkZTY4NTg2ODdjYTQ2ZjQ4OWFiZjY5MTk3OTNmODE4NTA=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/916ce55de6858687ca46f489abf6919793f81850\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:26Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:26Z\"\n },\n \"tree\": {\n \"sha\": \"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"91414a819a0bab259476d05693f13c904baa3ace\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE0Mjc3OjkxNDE0YTgxOWEwYmFiMjU5NDc2ZDA1NjkzZjEzYzkwNGJhYTNhY2U=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/91414a819a0bab259476d05693f13c904baa3ace\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/91414a819a0bab259476d05693f13c904baa3ace\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:20Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:50:20Z\"\n },\n \"tree\": {\n \"sha\": \"7cbd7eb209249df5a7e6db1535e96e6dc1fadf74\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7cbd7eb209249df5a7e6db1535e96e6dc1fadf74\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/33442a972ba6b351a4259958c3fad03e1ea0d77c\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/33442a972ba6b351a4259958c3fad03e1ea0d77c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"916ce55de6858687ca46f489abf6919793f81850\",\"force\":false}", + "body": "{\"sha\":\"91414a819a0bab259476d05693f13c904baa3ace\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:27 GMT", + "Date": "Sun, 17 Nov 2019 07:50:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4933", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e1bc87738ca6a592af803873e1acddb5\"", + "ETag": "W/\"dc258ef39e77e533d99c35118359b189\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1948,19 +1390,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B31:3ED77:12BACF3:16CA08B:5D789266", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1880:1C98C:231523C:2983CD1:5DD0FBBC", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"916ce55de6858687ca46f489abf6919793f81850\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE0Mjc3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"91414a819a0bab259476d05693f13c904baa3ace\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/91414a819a0bab259476d05693f13c904baa3ace\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE0Mjc3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5NzY0Mzc3NDYtdW41Z3Z2YzJkZGcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NzUz\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:21:28 GMT", + "Date": "Sun, 17 Nov 2019 07:50:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1969,8 +1410,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4939", - "X-RateLimit-Reset": "1568186258", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1980,11 +1421,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B33:9D1E:8626DA:A41714:5D789268", - "content-length": "665", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1885:1C993:2CC5E19:351D530:5DD0FBBD", + "content-length": "665" }, - "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NzUz\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"717fd631b102840989f206b06dd5474503dc64fd\",\"number\":7,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json index db61b632..9b07d463 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:42 GMT", + "Date": "Sun, 17 Nov 2019 07:46:40 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4904", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", - "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", + "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC4:2B19:A54400:C91200:5D77A5FA", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1971:23E1B:2DDC135:36581C6:5DD0FAE0", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,16 +35,16 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:43 GMT", + "Date": "Sun, 17 Nov 2019 07:46:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4903", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC6:2B1F:11C4359:15AC444:5D77A5FB", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1977:34217:22C7B1D:295296F:5DD0FAE1", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -69,7 +67,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:44 GMT", + "Date": "Sun, 17 Nov 2019 07:46:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -78,8 +76,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4886", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -89,9 +87,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC8:B4DE:118FE3E:155F1D6:5D77A5FB", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1978:1C98C:2307E05:2973E59:5DD0FAE1", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -101,7 +98,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:44 GMT", + "Date": "Sun, 17 Nov 2019 07:46:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -110,8 +107,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4885", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -121,43 +118,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ACA:3ED76:462A29:55FAFB:5D77A5FC", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197D:470CB:2C6D53A:34953FD:5DD0FAE2", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4884", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ACE:244E4:AAD103:CEE9C9:5D77A5FD", - "content-length": "1837", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -165,7 +129,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:45 GMT", + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -174,8 +138,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4883", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -185,19 +149,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ACC:B4DE:1190017:155F438:5D77A5FD", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1983:1C981:8B6781:A50594:5DD0FAE2", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -206,8 +169,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4882", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -217,107 +180,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD0:9D21:16BF97E:1BB435A:5D77A5FD", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1984:23E1B:2DDC336:3658450:5DD0FAE2", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4880", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD2:244EB:178993E:1C9450B:5D77A5FD", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4881", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD6:244E1:4FB14E:601503:5D77A5FD", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4879", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD8:B4D3:ABD34:C5622:5D77A5FD", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -325,7 +191,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +200,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4878", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,29 +211,152 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD5:B4DE:119011B:155F561:5D77A5FD", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198C:8072:2D6D295:35F0AA2:5DD0FAE3", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1989:23E1B:2DDC3AD:36584DC:5DD0FAE3", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "198B:2E3EE:229B208:291415B:5DD0FAE3", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1991:2E3ED:13494E6:1704F16:5DD0FAE3", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "198E:1C98C:2307F68:2974010:5DD0FAE3", + "content-length": "16478" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:49 GMT", + "Date": "Sun, 17 Nov 2019 07:46:47 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "472", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4902", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8cb25bb9d345488f514facf57064d87d1cfffd6c\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:14 GMT", + "ETag": "\"9d7947dbcdf62513234a366410e2721010d82f71\"", + "Last-Modified": "Sun, 17 Nov 2019 07:44:14 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -379,10 +368,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B26:15110:1801098:1D26E0E:5D77A601", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199E:1C981:8B680F:A5063F:5DD0FAE6" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"58918518ad776fba1f196ce03e7828af11421529\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"4efccdccc8a19422a70bd87c24d7a911f34b0aaf\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -390,7 +378,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:50 GMT", + "Date": "Sun, 17 Nov 2019 07:46:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -399,8 +387,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4877", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -410,11 +398,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B28:2B15:4BE47A:5C140D:5D77A602", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A4:2E3E9:27A1D:35395:5DD0FAE7", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -422,7 +409,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:51 GMT", + "Date": "Sun, 17 Nov 2019 07:46:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -431,8 +418,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4876", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -442,11 +429,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B2A:2B1F:11C4CCC:15ACFE0:5D77A602", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A5:1C993:2CB46B9:35087E3:5DD0FAE7", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -454,17 +440,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:52 GMT", + "Date": "Sun, 17 Nov 2019 07:46:48 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4901", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"83b3e749712791d5ee508f9924334557\"", + "ETag": "\"360f2cadf1abf473f2e0316bb085e9c9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -477,8 +463,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2C:9D21:16C0233:1BB4E42:5D77A603", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AA:23E1A:215C78A:279AB5C:5DD0FAE8" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -488,7 +473,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:53 GMT", + "Date": "Sun, 17 Nov 2019 07:46:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -497,8 +482,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4875", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -508,292 +493,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B2E:15110:180155B:1D273DD:5D77A604", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AF:8072:2D6DA2B:35F1384:5DD0FAE9", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4874", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B32:2B15:4BE5BC:5C15A0:5D77A605", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4873", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B30:9D1D:186E25:1DD7D0:5D77A605", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4871", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B34:9D1F:9EA443:C1942B:5D77A606", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4872", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B36:1510D:44DEBA:546F80:5D77A606", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4870", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B3A:244E4:AAD85C:CEF2E2:5D77A606", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4869", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B38:244EB:178A94D:1C95882:5D77A606", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4900", - "X-RateLimit-Reset": "1568125713", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6d65750d5f558dadf97dc866bf8b2047\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B3C:244E4:AAD8ED:CEF3A0:5D77A607", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4899", - "X-RateLimit-Reset": "1568125713", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"941458d17a55aece507a4092046edf20\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B3E:2B19:A54E94:C91F1C:5D77A608", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:32:57 GMT", + "Date": "Sun, 17 Nov 2019 07:46:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4898", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5b931daea9222fce9b5272abe62d9270\"", + "ETag": "\"d1806b8a8fb7174cac5409ac1b14f80b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -803,31 +527,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B41:2B24:1744314:1C47457:5D77A609", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B0:8070:2257DF5:28C9209:5DD0FAE9" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:32:58 GMT", + "Date": "Sun, 17 Nov 2019 07:46:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4897", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a626a97f8a80001bc138d56d25967d84\"", + "ETag": "\"f41eb0234516e9968901a4b780fcf4c1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7852cdd18ea3d80a218f70eb73c6d44d04a9218e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -837,18 +560,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B43:244EB:178AEFC:1C95F94:5D77A609", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B5:34215:77918B:8F2A7B:5DD0FAEA" }, - "response": "{\n \"sha\": \"f8072f71f59ac885ff1963bdc46335691565f319\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"html_url\": \"https://github.com/owner/repo/commit/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:58Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\n \"html_url\": \"https://github.com/owner/repo/commit/7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:50Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:50Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:00 GMT", + "Date": "Sun, 17 Nov 2019 07:46:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -857,8 +579,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4868", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -868,28 +590,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B44:1510E:A83F03:CCEC6D:5D77A60A", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B9:806E:1347030:16ECD32:5DD0FAEB", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NTU1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:01 GMT", + "Date": "Sun, 17 Nov 2019 07:46:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4896", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e971108a813c7925643e8912f4dc7a35\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:40 GMT", + "ETag": "W/\"62d495286bf6e504ad26b4bfb4fffce4\"", + "Last-Modified": "Sun, 17 Nov 2019 07:44:38 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -902,32 +623,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B46:B4E0:16399EE:1B0B8D8:5D77A60C", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BE:34218:2E9B17F:373558D:5DD0FAEC", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJmODA3MmY3MWY1OWFjODg1ZmYxOTYzYmRjNDYzMzU2OTE1NjVmMzE5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI3ODUyY2RkMThlYTNkODBhMjE4ZjcwZWI3M2M2ZDQ0ZDA0YTkyMThlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:02 GMT", + "Date": "Sun, 17 Nov 2019 07:46:53 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4895", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"819349cd1420474eae3022062f886747\"", + "ETag": "\"204f66206fb0fac3836ca25f457c54f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5131aff0764d628008926ec19f1c21939a4fb3bf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -937,95 +657,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B48:2B24:17449AB:1C47CA8:5D77A60D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C3:2E3F0:2F3D52C:37E10D3:5DD0FAED" }, - "response": "{\n \"sha\": \"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031\"\n}\n", + "response": "{\n \"sha\": \"5131aff0764d628008926ec19f1c21939a4fb3bf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5131aff0764d628008926ec19f1c21939a4fb3bf\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4867", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B4D:2B1F:11C5BDE:15AE2C3:5D77A60E", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNlZDZkZTZiOTkzMzlmMWU2ODk2MWQyOThjZTExNTQzMmUzMzgwYzg=\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4866", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B4B:1510D:44E1FD:5473BE:5D77A60E", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNlZDZkZTZiOTkzMzlmMWU2ODk2MWQyOThjZTExNTQzMmUzMzgwYzg=\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjOWYyYjNlOTViMDg4NzQ2NGMyZGNlMmQ4NzJjOTI3YmY3NjU2ZTc3\",\"sha\":\"c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"8cb25bb9d345488f514facf57064d87d1cfffd6c\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"733775d0ea5d86f1ca74612b87f4f18942fd4031\"}]}", + "body": "{\"base_tree\":\"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5131aff0764d628008926ec19f1c21939a4fb3bf\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:03 GMT", + "Date": "Sun, 17 Nov 2019 07:46:54 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4894", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"53a822f80e63b2406bc73a535fa8f0ff\"", + "ETag": "\"897f8f9ec27252412c27f1f8ce2bf67e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633", + "Location": "https://api.github.com/repos/owner/repo/git/trees/0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1035,31 +690,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4F:1510D:44E261:54744B:5D77A60F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C4:470C7:148E5B2:183C01F:5DD0FAED" }, - "response": "{\n \"sha\": \"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5131aff0764d628008926ec19f1c21939a4fb3bf\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5131aff0764d628008926ec19f1c21939a4fb3bf\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\"parents\":[\"ced6de6b99339f1e68961d298ce115432e3380c8\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72\",\"parents\":[\"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:04 GMT", + "Date": "Sun, 17 Nov 2019 07:46:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4893", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"eef860e4abc2f4d8bccc223092e836e4\"", + "ETag": "\"dad611adb943ea89b1b67f597fd1524d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3", + "Location": "https://api.github.com/repos/owner/repo/git/commits/79ee449e644246c2c320fb08b74c0788004be3c3", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1069,27 +723,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B50:3ED7B:11FE803:15D9A88:5D77A60F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CB:470C9:221B102:2885A6B:5DD0FAEE" }, - "response": "{\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"html_url\": \"https://github.com/owner/repo/commit/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:04Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:04Z\"\n },\n \"tree\": {\n \"sha\": \"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"html_url\": \"https://github.com/owner/repo/commit/ced6de6b99339f1e68961d298ce115432e3380c8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjc5ZWU0NDllNjQ0MjQ2YzJjMzIwZmIwOGI3NGMwNzg4MDA0YmUzYzM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"html_url\": \"https://github.com/owner/repo/commit/79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:54Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:46:54Z\"\n },\n \"tree\": {\n \"sha\": \"0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0cd1ece4c7d5a5f56a5d51be2ac5c71a0911fb72\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab1d5ac72445cff90d8d16897df4a74a4a7c707a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"force\":false}", + "body": "{\"sha\":\"79ee449e644246c2c320fb08b74c0788004be3c3\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:05 GMT", + "Date": "Sun, 17 Nov 2019 07:46:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4892", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f6313a3e20b2f0cf2cc0f25f6a04107b\"", + "ETag": "W/\"9da615da47b3a8cfa04868ffb3154696\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1101,11 +754,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B52:1510F:11CFF96:159BEE9:5D77A610", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:8072:2D6E254:35F1CEF:5DD0FAEF", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79ee449e644246c2c320fb08b74c0788004be3c3\"\n }\n}\n", "status": 200 }, { @@ -1113,7 +765,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:06 GMT", + "Date": "Sun, 17 Nov 2019 07:46:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1122,8 +774,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4865", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1133,43 +785,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B54:B4DA:5007DF:61A15F:5D77A612", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D3:2E3F0:2F3D8C6:37E1544:5DD0FAF0", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4864", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B56:15110:1802FE6:1D294C3:5D77A613", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1177,7 +796,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:08 GMT", + "Date": "Sun, 17 Nov 2019 07:46:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1186,8 +805,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4863", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1197,11 +816,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B58:2B1F:11C63F1:15AECB3:5D77A613", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470CB:2C6E5F2:3496834:5DD0FAF1", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjEzODYxOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NTU1\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19D9:2E3EE:229BEBE:2915057:5DD0FAF1", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1209,7 +858,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:08 GMT", + "Date": "Sun, 17 Nov 2019 07:46:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1218,8 +867,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4862", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1229,11 +878,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B5A:9D1F:9EB189:C1A48E:5D77A614", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DE:34217:22C8A2F:2953B8A:5DD0FAF2", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:46:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19DF:2E3ED:1349AE0:1705683:5DD0FAF2", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1241,7 +920,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:09 GMT", + "Date": "Sun, 17 Nov 2019 07:46:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1250,8 +929,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4861", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1261,19 +940,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B60:1510E:A847F0:CCF796:5D77A615", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E0:2E3F0:2F3DB20:37E1818:5DD0FAF2", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:09 GMT", + "Date": "Sun, 17 Nov 2019 07:47:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1282,8 +960,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4860", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1293,19 +971,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B5E:244E7:114599D:1511BE9:5D77A615", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E5:470CB:2C6E7F1:3496AA8:5DD0FAF3", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:11 GMT", + "Date": "Sun, 17 Nov 2019 07:47:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1314,8 +991,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4859", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1325,43 +1002,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B62:3ED82:17FC6F8:1D2C055:5D77A616", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F6:23E1A:215D830:279BEC1:5DD0FAF7", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4858", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B68:3ED7B:11FF482:15DA9FF:5D77A618", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1369,17 +1013,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:15 GMT", + "Date": "Sun, 17 Nov 2019 07:47:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4891", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e9b694c23a77cbca55132e6388228b2f\"", + "ETag": "\"9a3663608826337b2b5f42765cc87d47\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1392,18 +1036,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6A:1510D:44E700:547A2A:5D77A61B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F8:470C7:148EB71:183C6F8:5DD0FAF7" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:16 GMT", + "Date": "Sun, 17 Nov 2019 07:47:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1412,8 +1055,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4857", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1423,356 +1066,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B6D:244E7:1146157:1512574:5D77A61B", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FD:34218:2E9C2F4:3736A04:5DD0FAF8", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4856", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B70:244E7:11461E1:1512635:5D77A61C", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4855", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B6E:2B1F:11C7040:15AFBA7:5D77A61C", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpkYWVlOGQ1ZDE1ZDE0NGU4Nzc5OTU1MTY2YTJhZmVjY2RlMjc3MGUx\",\"sha\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4854", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B72:3ED82:17FD135:1D2CCE6:5D77A61C", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4852", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B74:3ED82:17FD229:1D2CE1F:5D77A61D", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4853", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B76:15110:180407E:1D2A950:5D77A61D", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4850", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B7A:2B19:A55F25:C933DC:5D77A61D", - "content-length": "1213", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4851", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B79:244E7:11463C9:1512898:5D77A61D", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4890", - "X-RateLimit-Reset": "1568125713", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"040a2c25412a1d67a1f78ac744ba4c63\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7C:9D21:16C2DA5:1BB8441:5D77A61E", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4849", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B7F:1510F:11D12D4:159D6AA:5D77A61E", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4889", - "X-RateLimit-Reset": "1568125713", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ea8ded0e03a06767ec521ba51c6081c4\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B80:B4DE:11929AF:1562806:5D77A61F", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:20 GMT", + "Date": "Sun, 17 Nov 2019 07:47:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4888", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ff4752ee2351f8217d02871b32a0db40\"", + "ETag": "\"dee05a8c2bae2c4622b1f7f7def224f2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1782,31 +1100,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B85:244E7:11466AA:1512C2C:5D77A61F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FC:470CB:2C6EFD2:34973FE:5DD0FAF8" }, - "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"f8072f71f59ac885ff1963bdc46335691565f319\"]}", + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:21 GMT", + "Date": "Sun, 17 Nov 2019 07:47:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4887", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"40646a009f1db2b042397584db318308\"", + "ETag": "\"488d658738fdcbdad44b0330169aaa63\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e4c442f198935b92fb13a25e7fcb3a08223d2b31", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7ab777f2b62d9e8c685c49b16641d4829cbabfa4", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1816,18 +1133,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B86:244EB:178DA9F:1C99424:5D77A620", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1800:1C98C:2309388:2975802:5DD0FAF8" }, - "response": "{\n \"sha\": \"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"html_url\": \"https://github.com/owner/repo/commit/e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:21Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"f8072f71f59ac885ff1963bdc46335691565f319\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"html_url\": \"https://github.com/owner/repo/commit/f8072f71f59ac885ff1963bdc46335691565f319\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"7ab777f2b62d9e8c685c49b16641d4829cbabfa4\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjdhYjc3N2YyYjYyZDllOGM2ODVjNDliMTY2NDFkNDgyOWNiYWJmYTQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ab777f2b62d9e8c685c49b16641d4829cbabfa4\",\n \"html_url\": \"https://github.com/owner/repo/commit/7ab777f2b62d9e8c685c49b16641d4829cbabfa4\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:47:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:47:05Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\n \"html_url\": \"https://github.com/owner/repo/commit/7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:21 GMT", + "Date": "Sun, 17 Nov 2019 07:47:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1836,8 +1152,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4848", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1847,11 +1163,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B87:244EB:178DB66:1C99522:5D77A621", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1804:8070:2258EFB:28CA626:5DD0FAF9", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1859,7 +1174,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:22 GMT", + "Date": "Sun, 17 Nov 2019 07:47:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1868,8 +1183,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4847", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1879,11 +1194,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B88:3ED7B:1200052:15DB85D:5D77A621", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1805:34218:2E9C52F:3736C90:5DD0FAF9", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { @@ -1891,7 +1205,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:22 GMT", + "Date": "Sun, 17 Nov 2019 07:47:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1900,8 +1214,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4846", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1911,28 +1225,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B8A:244EB:178DC1C:1C995FF:5D77A621", - "content-length": "764", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1806:2E3EC:794581:915D81:5DD0FAF9", + "content-length": "764" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzE1OTk2OTYyOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NTU1\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzQxODI5NTU1Ojc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:23 GMT", + "Date": "Sun, 17 Nov 2019 07:47:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4886", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f6313a3e20b2f0cf2cc0f25f6a04107b\"", - "Last-Modified": "Tue, 10 Sep 2019 13:31:40 GMT", + "ETag": "W/\"9da615da47b3a8cfa04868ffb3154696\"", + "Last-Modified": "Sun, 17 Nov 2019 07:44:38 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1945,64 +1258,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8E:2B24:1746FB5:1C4AB0F:5D77A622", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180B:1C981:8B6C6E:A50B62:5DD0FAFA", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79ee449e644246c2c320fb08b74c0788004be3c3\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4845", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B8C:1510E:A85298:CD04D5:5D77A622", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlNGM0NDJmMTk4OTM1YjkyZmIxM2EyNWU3ZmNiM2EwODIyM2QyYjMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI3YWI3NzdmMmI2MmQ5ZThjNjg1YzQ5YjE2NjQxZDQ4MjljYmFiZmE0In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:23 GMT", + "Date": "Sun, 17 Nov 2019 07:47:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4885", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6bd186263c548743f316acf71ceec7b4\"", + "ETag": "\"fa0a9d7824951dc42c8ef5b0f74cc2bd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a62777accd7f1cdcf02c6c72bc07f28b3d4bc114", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2012,95 +1292,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B90:3ED76:463A22:560ED3:5D77A623", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180C:34215:77947A:8F2E15:5DD0FAFA" }, - "response": "{\n \"sha\": \"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"\n}\n", + "response": "{\n \"sha\": \"a62777accd7f1cdcf02c6c72bc07f28b3d4bc114\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a62777accd7f1cdcf02c6c72bc07f28b3d4bc114\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4844", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B94:244E7:1146B9D:1513279:5D77A623", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4843", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B92:2B19:A56424:C93A1C:5D77A623", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo1ZTk2OWZhMWRmZGM1Y2NjMGZhNDJkMDViNzBlNWU0ZmE4NmE4NjMz\",\"sha\":\"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"}]}", + "body": "{\"base_tree\":\"79ee449e644246c2c320fb08b74c0788004be3c3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a62777accd7f1cdcf02c6c72bc07f28b3d4bc114\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:25 GMT", + "Date": "Sun, 17 Nov 2019 07:47:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4884", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"da1625bc76ca840b1168bbed2ae34fe7\"", + "ETag": "\"78f4af70e40ed29926a02140a88a606b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4", + "Location": "https://api.github.com/repos/owner/repo/git/trees/f5c1345f7ac5849702725f3f0b3e95822ad1bdb4", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2110,31 +1325,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B96:15110:1804CD1:1D2B8A1:5D77A624", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1811:470C7:148EDD8:183C9CF:5DD0FAFB" }, - "response": "{\n \"sha\": \"d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"f5c1345f7ac5849702725f3f0b3e95822ad1bdb4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f5c1345f7ac5849702725f3f0b3e95822ad1bdb4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a62777accd7f1cdcf02c6c72bc07f28b3d4bc114\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a62777accd7f1cdcf02c6c72bc07f28b3d4bc114\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d68f584337592b58fd3c203036e0905ce335d4e4\",\"parents\":[\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"f5c1345f7ac5849702725f3f0b3e95822ad1bdb4\",\"parents\":[\"79ee449e644246c2c320fb08b74c0788004be3c3\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:25 GMT", + "Date": "Sun, 17 Nov 2019 07:47:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4883", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fda6ed6b6428f57760b2bd16ed80c717\"", + "ETag": "\"378cf343376e4a7ec70c1a874a87708b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/04cc4b55c42ea1c80d35e5f63f43f655309a2d10", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2144,27 +1358,57 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B98:15110:1804DF6:1D2BA07:5D77A625", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1816:34217:22C9579:295491A:5DD0FAFC" }, - "response": "{\n \"sha\": \"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjhiMzhhNjhhMGViZGYyYTBiZjcyZWZiYzk0Y2VjZTZlOTY5NTExMmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"html_url\": \"https://github.com/owner/repo/commit/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:25Z\"\n },\n \"tree\": {\n \"sha\": \"d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"html_url\": \"https://github.com/owner/repo/commit/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"04cc4b55c42ea1c80d35e5f63f43f655309a2d10\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjA0Y2M0YjU1YzQyZWExYzgwZDM1ZTVmNjNmNDNmNjU1MzA5YTJkMTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/04cc4b55c42ea1c80d35e5f63f43f655309a2d10\",\n \"html_url\": \"https://github.com/owner/repo/commit/04cc4b55c42ea1c80d35e5f63f43f655309a2d10\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:47:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:47:08Z\"\n },\n \"tree\": {\n \"sha\": \"f5c1345f7ac5849702725f3f0b3e95822ad1bdb4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f5c1345f7ac5849702725f3f0b3e95822ad1bdb4\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79ee449e644246c2c320fb08b74c0788004be3c3\",\n \"html_url\": \"https://github.com/owner/repo/commit/79ee449e644246c2c320fb08b74c0788004be3c3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\"force\":false}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:47:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1817:2E3F0:2F3EBC3:37E2B98:5DD0FAFC", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"04cc4b55c42ea1c80d35e5f63f43f655309a2d10\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:27 GMT", + "Date": "Sun, 17 Nov 2019 07:47:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4882", - "X-RateLimit-Reset": "1568125713", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bbf32d5e4b339ddb39569c73be700995\"", + "ETag": "W/\"2843ef9b1f978c96f44e26bcccf81958\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2176,19 +1420,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9A:B4DA:501209:61ADC0:5D77A626", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1819:8070:2259301:28CAAE3:5DD0FAFC", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"04cc4b55c42ea1c80d35e5f63f43f655309a2d10\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/04cc4b55c42ea1c80d35e5f63f43f655309a2d10\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"refId\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:28 GMT", + "Date": "Sun, 17 Nov 2019 07:47:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2197,8 +1440,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4842", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2208,19 +1451,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B9F:2B15:4BF3C0:5C2722:5D77A627", - "content-length": "438", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181D:34218:2E9CBA6:373741E:5DD0FAFD", + "content-length": "276" }, - "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjc4NTJjZGQxOGVhM2Q4MGEyMThmNzBlYjczYzZkNDRkMDRhOTIxOGU=\",\"sha\":\"7852cdd18ea3d80a218f70eb73c6d44d04a9218e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"7ab777f2b62d9e8c685c49b16641d4829cbabfa4\",\"refId\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:29 GMT", + "Date": "Sun, 17 Nov 2019 07:47:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2229,8 +1471,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4841", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2240,11 +1482,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA0:244E7:11470E9:1513912:5D77A628", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181E:8072:2D6F9F3:35F3885:5DD0FAFD", + "content-length": "438" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjdhYjc3N2YyYjYyZDllOGM2ODVjNDliMTY2NDFkNDgyOWNiYWJmYTQ=\",\"sha\":\"7ab777f2b62d9e8c685c49b16641d4829cbabfa4\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", "status": 200 }, { @@ -2252,7 +1493,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:29 GMT", + "Date": "Sun, 17 Nov 2019 07:47:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2261,8 +1502,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4840", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2272,11 +1513,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA2:1510D:44ECBB:54813D:5D77A629", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1829:8070:2259581:28CADD4:5DD0FAFF", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjEzODYxOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5NTU1\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -2284,7 +1524,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:33:30 GMT", + "Date": "Sun, 17 Nov 2019 07:47:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2293,8 +1533,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4839", - "X-RateLimit-Reset": "1568125964", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2304,43 +1544,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA4:9D21:16C3F55:1BB9A31:5D77A629", - "content-length": "500", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182A:470C7:148EFE1:183CC3C:5DD0FAFF", + "content-length": "500" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:33:34 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4838", - "X-RateLimit-Reset": "1568125964", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BB6:244EB:178F346:1C9B1CF:5D77A62E", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json index 1e64a5c7..94e79cb8 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:51 GMT", + "Date": "Sun, 17 Nov 2019 07:42:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4873", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a276b43fb76d38782de30a12a20e2a9c\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E21:43EF6:6730205:7B2F470:5DCBB68E", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1867:23E19:13BE2E5:175BD1B:5DD0F9F6", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:51 GMT", + "Date": "Sun, 17 Nov 2019 07:42:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4872", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2A:BBF8:68E337A:7D19B24:5DCBB68F", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186D:8070:224952D:28B7BF9:5DD0F9F7", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -69,7 +67,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:52 GMT", + "Date": "Sun, 17 Nov 2019 07:42:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -78,8 +76,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -89,9 +87,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E2F:BBF8:68E3473:7D19C50:5DCBB690", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1872:1C985:13035D6:169964B:5DD0F9F7", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -101,7 +98,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:52 GMT", + "Date": "Sun, 17 Nov 2019 07:42:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -110,8 +107,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -121,11 +118,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E30:450E4:8923F88:A35B020:5DCBB690", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1873:470C7:14859CC:183199C:5DD0F9F8", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -133,7 +129,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:53 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -142,8 +138,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -153,11 +149,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E36:43EF6:67304C5:7B2F7BF:5DCBB691", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187B:23E1B:2DC8B4B:36410A5:5DD0F9F8", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -165,7 +160,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -174,8 +169,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -185,43 +180,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E35:33B0A:8A3566E:A4DBE48:5DCBB691", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187A:23E1B:2DC8B3F:3641093:5DD0F9F8", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3E:450E4:892421E:A35B33D:5DCBB692", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -229,7 +191,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -238,8 +200,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -249,11 +211,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3D:33B09:6942524:7DA6C70:5DCBB692", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1881:23E1A:214C00E:278762F:5DD0F9F9", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -261,7 +222,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -270,8 +231,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -281,11 +242,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3F:450E4:8924223:A35B33F:5DCBB692", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1884:8070:224975E:28B7E9E:5DD0F9F9", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1882:470C9:220C266:2873DB4:5DD0F9F9", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -293,7 +284,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -302,8 +293,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -313,11 +304,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E40:2CFED:8FE8802:AB51AFE:5DCBB692", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1885:1C993:2CA29F0:34F30C2:5DD0F9F9", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:42:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,29 +335,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3B:3A594:1B9EC54:2125ECE:5DCBB692", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1880:1C993:2CA29EC:34F30BE:5DD0F9F9", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:57 GMT", + "Date": "Sun, 17 Nov 2019 07:42:52 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "462", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4871", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\"", - "Last-Modified": "Wed, 13 Nov 2019 07:53:16 GMT", + "ETag": "\"d1d7196cfb4f1b519d81c1ab76438fd02d9323fe\"", + "Last-Modified": "Sun, 17 Nov 2019 07:42:09 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -379,10 +368,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E55:2CFED:8FE8CE8:AB520F8:5DCBB695", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1891:8072:2D58DCB:35D8C0E:5DD0F9FC" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"b1c23c8843ff0b0a17005535624be897f08ec99d\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"ddfa18680eb29e8adb85fab9e8a9408f1c53af23\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -390,7 +378,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:58 GMT", + "Date": "Sun, 17 Nov 2019 07:42:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -399,8 +387,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -410,11 +398,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E5A:43EEE:1D89A2B:23514AA:5DCBB696", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1892:8072:2D58E67:35D8CC7:5DD0F9FD", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -422,7 +409,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:58 GMT", + "Date": "Sun, 17 Nov 2019 07:42:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -431,8 +418,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -442,11 +429,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E5B:33B09:69429CB:7DA7217:5DCBB696", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1897:470CB:2C5BBC3:3480363:5DD0F9FD", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -454,17 +440,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:53:59 GMT", + "Date": "Sun, 17 Nov 2019 07:42:54 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4870", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f8eeaba8ad8eaebf5e283dc5767e39a\"", + "ETag": "\"360f2cadf1abf473f2e0316bb085e9c9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -477,8 +463,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E61:3A597:8DD8B3B:A89BF72:5DCBB697", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1898:34217:22B99B6:2941DC9:5DD0F9FE" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -488,7 +473,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:00 GMT", + "Date": "Sun, 17 Nov 2019 07:42:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -497,8 +482,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -508,289 +493,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E65:3A594:1B9EDDD:21260BA:5DCBB697", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189D:8072:2D590C0:35D8F8D:5DD0F9FE", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E67:33B09:6942C54:7DA7541:5DCBB698", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E66:33B0A:8A36127:A4DCB59:5DCBB698", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6C:3A597:8DD8EDC:A89C3D7:5DCBB699", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6D:3A595:3DCB73B:49DFE3B:5DCBB699", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E72:2CFED:8FE94F4:AB52A8E:5DCBB699", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E73:2CFE4:1984295:1E85BED:5DCBB699", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:03 GMT", + "Date": "Sun, 17 Nov 2019 07:42:55 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", + "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4869", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"afc456f12c53acba87cae8c3f305fac9\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E74:2CFEA:66652CA:7A14101:5DCBB69A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4868", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bd0a6386e55d2da10c88a8b86b291814\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E79:2CFE8:3E76024:4AF0AA0:5DCBB69B", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11731", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4867", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5ef5b0dadf07cc671aa57ea16f105174\"", + "ETag": "\"d1806b8a8fb7174cac5409ac1b14f80b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -803,8 +527,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7E:43EF3:3A19AF2:459E36A:5DCBB69C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A2:34216:12E26F4:16631CE:5DD0F9FF" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -814,20 +537,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:05 GMT", + "Date": "Sun, 17 Nov 2019 07:42:56 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1499", + "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4866", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6db5bfd929a783c758db09e8c184b761\"", + "ETag": "\"fbc79991e24910ca49656586ae84bb27\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/42108f703ade76fcb55b72bbff286f4360c307f9", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e97b16267026342109eeb7cb84f22c48afe0b365", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -837,18 +560,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E83:3A596:655E5C0:7912D56:5DCBB69D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A3:2E3ED:1341E9F:16FC051:5DD0FA00" }, - "response": "{\n \"sha\": \"42108f703ade76fcb55b72bbff286f4360c307f9\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42108f703ade76fcb55b72bbff286f4360c307f9\",\n \"html_url\": \"https://github.com/owner/repo/commit/42108f703ade76fcb55b72bbff286f4360c307f9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:05Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"e97b16267026342109eeb7cb84f22c48afe0b365\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e97b16267026342109eeb7cb84f22c48afe0b365\",\n \"html_url\": \"https://github.com/owner/repo/commit/e97b16267026342109eeb7cb84f22c48afe0b365\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:42:56Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:07 GMT", + "Date": "Sun, 17 Nov 2019 07:42:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -857,8 +579,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -868,28 +590,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E88:450D5:3AC2654:4657744:5DCBB69D", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A8:34217:22B9C20:29420A9:5DD0FA00", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkxNjYy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5MzMw\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:07 GMT", + "Date": "Sun, 17 Nov 2019 07:42:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4865", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"839fa5997121e5168d23639046525a76\"", - "Last-Modified": "Wed, 13 Nov 2019 07:52:14 GMT", + "ETag": "W/\"f3f14c3a854f058bf254cb01ce2c6630\"", + "Last-Modified": "Sun, 17 Nov 2019 07:41:08 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -902,32 +623,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8D:2CFED:8FEA0BB:AB5383A:5DCBB69F", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B2:470CB:2C5C1D0:3480A93:5DD0FA02", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a55cb29364ba4a1c34f027897877ef0076356497\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a55cb29364ba4a1c34f027897877ef0076356497\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94820ccfcf1a8d6246e78f8301ab968b4d677afb\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI0MjEwOGY3MDNhZGU3NmZjYjU1YjcyYmJmZjI4NmY0MzYwYzMwN2Y5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJlOTdiMTYyNjcwMjYzNDIxMDllZWI3Y2I4NGYyMmM0OGFmZTBiMzY1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:08 GMT", + "Date": "Sun, 17 Nov 2019 07:42:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4864", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"304432aa5a1b96f45b64d766f94fc979\"", + "ETag": "\"85faace7ea43590d6f5e3f65243fe642\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/a78b9c75727e557f9cc7ef699a5981b580865074", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3a9795245ce3818dcf49bcf5974e4265e678c02c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -937,95 +657,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E93:450E4:89259EB:A35CFA6:5DCBB69F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B3:1C981:8B3BB6:A4D037:5DD0FA03" }, - "response": "{\n \"sha\": \"a78b9c75727e557f9cc7ef699a5981b580865074\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a78b9c75727e557f9cc7ef699a5981b580865074\"\n}\n", + "response": "{\n \"sha\": \"3a9795245ce3818dcf49bcf5974e4265e678c02c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3a9795245ce3818dcf49bcf5974e4265e678c02c\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a55cb29364ba4a1c34f027897877ef0076356497\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E95:2CFED:8FEA330:AB53B25:5DCBB6A0", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmE1NWNiMjkzNjRiYTRhMWMzNGYwMjc4OTc4NzdlZjAwNzYzNTY0OTc=\",\"sha\":\"a55cb29364ba4a1c34f027897877ef0076356497\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a55cb29364ba4a1c34f027897877ef0076356497\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E94:BBFA:87948EC:A22BFFC:5DCBB6A0", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOmE1NWNiMjkzNjRiYTRhMWMzNGYwMjc4OTc4NzdlZjAwNzYzNTY0OTc=\",\"sha\":\"a55cb29364ba4a1c34f027897877ef0076356497\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5OGE3M2NlMGQ0ZDYwZWJiNjkzZjZlZDBmYWMzZDNkODEyMDA0Zjk4\",\"sha\":\"98a73ce0d4d60ebb693f6ed0fac3d3d812004f98\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"43ac250dedf055b370cdcb0b9eb39f9a1aa753b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"a55cb29364ba4a1c34f027897877ef0076356497\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a78b9c75727e557f9cc7ef699a5981b580865074\"}]}", + "body": "{\"base_tree\":\"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3a9795245ce3818dcf49bcf5974e4265e678c02c\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:09 GMT", + "Date": "Sun, 17 Nov 2019 07:43:00 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "892", + "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4863", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df3e5c3b06a8c789e2a1157ac8ace8a6\"", + "ETag": "\"18b7f2ea844189c3e49347c05847f69d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/f541d79a7202d174ad4a4ad6099dade71205731d", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1035,31 +690,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9A:33B0A:8A370B9:A4DDD9F:5DCBB6A1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B9:23E19:13BE7C8:175C339:5DD0FA03" }, - "response": "{\n \"sha\": \"f541d79a7202d174ad4a4ad6099dade71205731d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f541d79a7202d174ad4a4ad6099dade71205731d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a78b9c75727e557f9cc7ef699a5981b580865074\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a78b9c75727e557f9cc7ef699a5981b580865074\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3a9795245ce3818dcf49bcf5974e4265e678c02c\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3a9795245ce3818dcf49bcf5974e4265e678c02c\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"f541d79a7202d174ad4a4ad6099dade71205731d\",\"parents\":[\"a55cb29364ba4a1c34f027897877ef0076356497\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b\",\"parents\":[\"94820ccfcf1a8d6246e78f8301ab968b4d677afb\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:10 GMT", + "Date": "Sun, 17 Nov 2019 07:43:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1505", + "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4862", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b5e705f652ce9c5c838831c209f8e534\"", + "ETag": "\"078522c1fb64f9c0b32a95b1440997a8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/31e22bc4a6c992481182474e710198299c99e769", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ad128d28c3d3478a928b7a8e689d7c08dc0503a1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1069,27 +723,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A595:3DCBF17:49E076D:5DCBB6A1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C3:2E3F0:2F2AACF:37CAAF4:5DD0FA04" }, - "response": "{\n \"sha\": \"31e22bc4a6c992481182474e710198299c99e769\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOjMxZTIyYmM0YTZjOTkyNDgxMTgyNDc0ZTcxMDE5ODI5OWM5OWU3Njk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31e22bc4a6c992481182474e710198299c99e769\",\n \"html_url\": \"https://github.com/owner/repo/commit/31e22bc4a6c992481182474e710198299c99e769\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:10Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:10Z\"\n },\n \"tree\": {\n \"sha\": \"f541d79a7202d174ad4a4ad6099dade71205731d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f541d79a7202d174ad4a4ad6099dade71205731d\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a55cb29364ba4a1c34f027897877ef0076356497\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a55cb29364ba4a1c34f027897877ef0076356497\",\n \"html_url\": \"https://github.com/owner/repo/commit/a55cb29364ba4a1c34f027897877ef0076356497\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOmFkMTI4ZDI4YzNkMzQ3OGE5MjhiN2E4ZTY4OWQ3YzA4ZGMwNTAzYTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"html_url\": \"https://github.com/owner/repo/commit/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:01Z\"\n },\n \"tree\": {\n \"sha\": \"c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c9599921ab200ec0ff7262bcc07d7a4ff7adfc7b\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94820ccfcf1a8d6246e78f8301ab968b4d677afb\",\n \"html_url\": \"https://github.com/owner/repo/commit/94820ccfcf1a8d6246e78f8301ab968b4d677afb\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"31e22bc4a6c992481182474e710198299c99e769\",\"force\":false}", + "body": "{\"sha\":\"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:11 GMT", + "Date": "Sun, 17 Nov 2019 07:43:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4861", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0ac373c4a5e84b2fffe12920e0b38787\"", + "ETag": "W/\"b853d94f20f65f106d3d7b78e43023fd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1101,11 +754,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA4:33B09:6943BC2:7DA876B:5DCBB6A3", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C8:1C98C:22F9B56:296319F:5DD0FA05", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31e22bc4a6c992481182474e710198299c99e769\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31e22bc4a6c992481182474e710198299c99e769\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\"\n }\n}\n", "status": 200 }, { @@ -1113,7 +765,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:12 GMT", + "Date": "Sun, 17 Nov 2019 07:43:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1122,8 +774,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1133,19 +785,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EA9:2CFE4:198461E:1E8603D:5DCBB6A4", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CD:8070:224A581:28B8F69:5DD0FA06", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:13 GMT", + "Date": "Sun, 17 Nov 2019 07:43:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1154,8 +805,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1165,11 +816,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAF:450D6:69F0466:7E2AAE3:5DCBB6A4", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D2:1C981:8B3D36:A4D1FC:5DD0FA07", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1177,7 +827,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:13 GMT", + "Date": "Sun, 17 Nov 2019 07:43:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1186,8 +836,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1197,11 +847,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB0:BBFA:8795082:A22C911:5DCBB6A5", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D3:470CB:2C5C9EB:348143A:5DD0FA07", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAyNDIzOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkxNjYy\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjEzODYxOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5MzMw\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1209,7 +858,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:14 GMT", + "Date": "Sun, 17 Nov 2019 07:43:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1218,8 +867,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1229,11 +878,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB4:43EEE:1D8A125:2351D03:5DCBB6A5", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D4:34216:12E2D42:1663927:5DD0FA08", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18D9:23E19:13BEBA8:175C7D3:5DD0FA09", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1241,7 +920,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:14 GMT", + "Date": "Sun, 17 Nov 2019 07:43:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1250,8 +929,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1261,19 +940,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB7:3A597:8DDA6DE:A89E064:5DCBB6A6", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DA:8070:224A8B4:28B930A:5DD0FA09", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:15 GMT", + "Date": "Sun, 17 Nov 2019 07:43:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1282,8 +960,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4940", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1293,19 +971,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB6:43EF8:89AFE60:A3F8464:5DCBB6A6", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DF:23E1B:2DCA437:3642DE8:5DD0FA09", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:18 GMT", + "Date": "Sun, 17 Nov 2019 07:43:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1314,8 +991,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4939", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1325,11 +1002,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EC9:3A595:3DCC518:49E0ED7:5DCBB6AA", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18ED:23E1B:2DCA9D1:364348E:5DD0FA0D", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1337,17 +1013,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:19 GMT", + "Date": "Sun, 17 Nov 2019 07:43:10 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4860", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9e4bae06c314b962cdd6aa1078eed350\"", + "ETag": "\"9a3663608826337b2b5f42765cc87d47\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1360,18 +1036,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECE:33B0A:8A380BE:A4DF108:5DCBB6AB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F2:23E1B:2DCAA9B:3643583:5DD0FA0D" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:20 GMT", + "Date": "Sun, 17 Nov 2019 07:43:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1380,8 +1055,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4938", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1391,289 +1066,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED4:33B08:3EB3971:4AD0329:5DCBB6AC", - "content-length": "260", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F7:1C993:2CA43F1:34F4FFE:5DD0FA0E", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4937", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED3:3A595:3DCC62F:49E102E:5DCBB6AC", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo3YTMyNTU1NjRkNzU4NzU3YTVjYmFlY2E0NTBhMzU4NzRlNmYzZTQ4\",\"sha\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4936", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED5:3A597:8DDB002:A89EB59:5DCBB6AC", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4935", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED7:3A597:8DDB0AC:A89EC28:5DCBB6AC", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4934", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED6:43EF8:89B081C:A3F9018:5DCBB6AC", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4932", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDC:43EF3:3A1A76E:459F260:5DCBB6AD", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4933", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDD:BBFA:8795CE1:A22D81F:5DCBB6AD", - "content-length": "1213", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:22 GMT", + "Date": "Sun, 17 Nov 2019 07:43:11 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", + "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4859", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"39d63197d18b419117e10c490af3a18b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE2:2CFED:8FEB978:AB55600:5DCBB6AD", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4858", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"84b3400f105cfaf2c2bd5976a7491c14\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE3:43EF8:89B0A90:A3F9324:5DCBB6AE", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11731", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4857", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f10671fccf61ae61e42b2bb9d02cb6d\"", + "ETag": "\"dee05a8c2bae2c4622b1f7f7def224f2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", @@ -1686,63 +1100,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE8:BBFA:8795FC1:A22DB97:5DCBB6AF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F9:1C993:2CA43F3:34F5008:5DD0FA0E" }, "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4931", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EED:43EF8:89B0CDD:A3F95EC:5DCBB6B0", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"42108f703ade76fcb55b72bbff286f4360c307f9\"]}", + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"e97b16267026342109eeb7cb84f22c48afe0b365\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:24 GMT", + "Date": "Sun, 17 Nov 2019 07:43:11 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1499", + "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4856", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d2a9ef74b554ce334c4795e2ff7fb1b9\"", + "ETag": "\"a1b1aea6342bfb22f29a726308ac12da\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/404571589b8001de72214348962a6b6825765d4f", + "Location": "https://api.github.com/repos/owner/repo/git/commits/68d8f084923d8f999b27aebeb5d6d10b9187c90a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1752,18 +1133,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEE:43EF6:6732968:7B323F6:5DCBB6B0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:806E:133EF7C:16E3534:5DD0FA0F" }, - "response": "{\n \"sha\": \"404571589b8001de72214348962a6b6825765d4f\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOjQwNDU3MTU4OWI4MDAxZGU3MjIxNDM0ODk2MmE2YjY4MjU3NjVkNGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/404571589b8001de72214348962a6b6825765d4f\",\n \"html_url\": \"https://github.com/owner/repo/commit/404571589b8001de72214348962a6b6825765d4f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:24Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:24Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"42108f703ade76fcb55b72bbff286f4360c307f9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42108f703ade76fcb55b72bbff286f4360c307f9\",\n \"html_url\": \"https://github.com/owner/repo/commit/42108f703ade76fcb55b72bbff286f4360c307f9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOjY4ZDhmMDg0OTIzZDhmOTk5YjI3YWViZWI1ZDZkMTBiOTE4N2M5MGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\n \"html_url\": \"https://github.com/owner/repo/commit/68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:11Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:11Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"e97b16267026342109eeb7cb84f22c48afe0b365\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e97b16267026342109eeb7cb84f22c48afe0b365\",\n \"html_url\": \"https://github.com/owner/repo/commit/e97b16267026342109eeb7cb84f22c48afe0b365\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:25 GMT", + "Date": "Sun, 17 Nov 2019 07:43:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1772,8 +1152,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4930", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1783,11 +1163,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EF3:450D6:69F12E2:7E2BC29:5DCBB6B0", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FE:1C985:130455D:169A876:5DD0FA0F", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18FF:2E3EE:228D2C3:29038D1:5DD0FA0F", + "content-length": "429" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { @@ -1795,7 +1205,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:25 GMT", + "Date": "Sun, 17 Nov 2019 07:43:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1804,8 +1214,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4929", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1815,28 +1225,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EF5:3A597:8DDB6D4:A89F37B:5DCBB6B0", - "content-length": "764", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1902:470C9:220D968:28758EB:5DD0FA0F", + "content-length": "764" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkxNjYy\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzQwMjkxNjYyOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5MzMw\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzQxODI5MzMwOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:25 GMT", + "Date": "Sun, 17 Nov 2019 07:43:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4855", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0ac373c4a5e84b2fffe12920e0b38787\"", - "Last-Modified": "Wed, 13 Nov 2019 07:52:14 GMT", + "ETag": "W/\"b853d94f20f65f106d3d7b78e43023fd\"", + "Last-Modified": "Sun, 17 Nov 2019 07:41:08 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1849,64 +1258,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF6:BBFA:879632B:A22DFB1:5DCBB6B1", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190C:34216:12E3239:1663EFA:5DD0FA10", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31e22bc4a6c992481182474e710198299c99e769\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31e22bc4a6c992481182474e710198299c99e769\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4928", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFA:43EF6:6732B6A:7B3264E:5DCBB6B1", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQyMTA4ZjcwM2FkZTc2ZmNiNTViNzJiYmZmMjg2ZjQzNjBjMzA3Zjk=\",\"sha\":\"42108f703ade76fcb55b72bbff286f4360c307f9\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI0MDQ1NzE1ODliODAwMWRlNzIyMTQzNDg5NjJhNmI2ODI1NzY1ZDRmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI2OGQ4ZjA4NDkyM2Q4Zjk5OWIyN2FlYmViNWQ2ZDEwYjkxODdjOTBhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:26 GMT", + "Date": "Sun, 17 Nov 2019 07:43:13 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4854", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4087e6d5fea4a1e8145acab52484ebf7\"", + "ETag": "\"cbbfaa96454f4e369c13fb59aeabea65\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/145e119edc06cab5def8018efcfd66687c693d0e", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a64f14a8f4b042a06c404ebf7ee546e6851fc8b5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1916,95 +1292,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EFB:BBF8:68E621A:7D1D279:5DCBB6B1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190E:2E3F0:2F2BFD0:37CC388:5DD0FA11" }, - "response": "{\n \"sha\": \"145e119edc06cab5def8018efcfd66687c693d0e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/145e119edc06cab5def8018efcfd66687c693d0e\"\n}\n", + "response": "{\n \"sha\": \"a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31e22bc4a6c992481182474e710198299c99e769\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4926", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFD:33B09:6944F8F:7DA9EEB:5DCBB6B2", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjMxZTIyYmM0YTZjOTkyNDgxMTgyNDc0ZTcxMDE5ODI5OWM5OWU3Njk=\",\"sha\":\"31e22bc4a6c992481182474e710198299c99e769\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31e22bc4a6c992481182474e710198299c99e769\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:54:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4927", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFC:450D6:69F1526:7E2BECA:5DCBB6B2", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjMxZTIyYmM0YTZjOTkyNDgxMTgyNDc0ZTcxMDE5ODI5OWM5OWU3Njk=\",\"sha\":\"31e22bc4a6c992481182474e710198299c99e769\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzpmNTQxZDc5YTcyMDJkMTc0YWQ0YTRhZDYwOTlkYWRlNzEyMDU3MzFk\",\"sha\":\"f541d79a7202d174ad4a4ad6099dade71205731d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"a78b9c75727e557f9cc7ef699a5981b580865074\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"31e22bc4a6c992481182474e710198299c99e769\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"145e119edc06cab5def8018efcfd66687c693d0e\"}]}", + "body": "{\"base_tree\":\"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:27 GMT", + "Date": "Sun, 17 Nov 2019 07:43:14 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "892", + "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4853", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7e9ce6a8b88ad6188d7e6e6ad88d7384\"", + "ETag": "\"9e82f19287102ab8c2046cbaf239dfa0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/effcec90b4b67848de749b33901b23389df6c0c2", + "Location": "https://api.github.com/repos/owner/repo/git/trees/cdd9a8bfb33df190c95200998c04aa93fcbbb9d2", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2014,31 +1325,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F02:43EF8:89B117D:A3F9B6A:5DCBB6B3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190F:806E:133F150:16E374B:5DD0FA11" }, - "response": "{\n \"sha\": \"effcec90b4b67848de749b33901b23389df6c0c2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/effcec90b4b67848de749b33901b23389df6c0c2\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"145e119edc06cab5def8018efcfd66687c693d0e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/145e119edc06cab5def8018efcfd66687c693d0e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"cdd9a8bfb33df190c95200998c04aa93fcbbb9d2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/cdd9a8bfb33df190c95200998c04aa93fcbbb9d2\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a64f14a8f4b042a06c404ebf7ee546e6851fc8b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"effcec90b4b67848de749b33901b23389df6c0c2\",\"parents\":[\"31e22bc4a6c992481182474e710198299c99e769\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"cdd9a8bfb33df190c95200998c04aa93fcbbb9d2\",\"parents\":[\"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:28 GMT", + "Date": "Sun, 17 Nov 2019 07:43:15 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1505", + "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4852", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dfbd157d79fe42a8f92bb01742405933\"", + "ETag": "\"078e5b8e5b6fe2b7c45ab352c09003e2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9", + "Location": "https://api.github.com/repos/owner/repo/git/commits/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2048,27 +1358,57 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F07:2CFE8:3E7768D:4AF24F2:5DCBB6B3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470C9:220DBFF:2875C0F:5DD0FA12" }, - "response": "{\n \"sha\": \"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAyNDIzOmY3NTFiYjYwZmQzZTM5YjNjNWFiNTIzZmUyMTRjYTJmYjYzYjQ4ZDk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"html_url\": \"https://github.com/owner/repo/commit/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:28Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:54:28Z\"\n },\n \"tree\": {\n \"sha\": \"effcec90b4b67848de749b33901b23389df6c0c2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/effcec90b4b67848de749b33901b23389df6c0c2\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"31e22bc4a6c992481182474e710198299c99e769\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31e22bc4a6c992481182474e710198299c99e769\",\n \"html_url\": \"https://github.com/owner/repo/commit/31e22bc4a6c992481182474e710198299c99e769\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjEzODYxOmJiYWVkMDAzM2ZmMGQyYzE5OWM4YTliYzM4NTkyMmJhMDliYzdhZGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"html_url\": \"https://github.com/owner/repo/commit/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:43:14Z\"\n },\n \"tree\": {\n \"sha\": \"cdd9a8bfb33df190c95200998c04aa93fcbbb9d2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/cdd9a8bfb33df190c95200998c04aa93fcbbb9d2\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\",\n \"html_url\": \"https://github.com/owner/repo/commit/ad128d28c3d3478a928b7a8e689d7c08dc0503a1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\"force\":false}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1912:34217:22BB179:2943996:5DD0FA12", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:29 GMT", + "Date": "Sun, 17 Nov 2019 07:43:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4851", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cee8e741ad476e39e66f638e92dee4af\"", + "ETag": "W/\"0ddcc6845ecdf2c0517d5c10a9035db0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2080,19 +1420,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F08:43EF8:89B13A6:A3F9E04:5DCBB6B4", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C98C:22FAD72:2964690:5DD0FA13", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAyNDIzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f751bb60fd3e39b3c5ab523fe214ca2fb63b48d9\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjEzODYxOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bbaed0033ff0d2c199c8a9bc385922ba09bc7adf\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"404571589b8001de72214348962a6b6825765d4f\",\"refId\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:30 GMT", + "Date": "Sun, 17 Nov 2019 07:43:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2101,8 +1440,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4925", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2112,19 +1451,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F0D:33B09:6945394:7DAA3A5:5DCBB6B5", - "content-length": "438", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1917:34218:2E879E8:371E71C:5DD0FA14", + "content-length": "276" }, - "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQwNDU3MTU4OWI4MDAxZGU3MjIxNDM0ODk2MmE2YjY4MjU3NjVkNGY=\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOmU5N2IxNjI2NzAyNjM0MjEwOWVlYjdjYjg0ZjIyYzQ4YWZlMGIzNjU=\",\"sha\":\"e97b16267026342109eeb7cb84f22c48afe0b365\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\"refId\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:31 GMT", + "Date": "Sun, 17 Nov 2019 07:43:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2133,8 +1471,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4924", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2144,11 +1482,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F16:43EF6:6733184:7B32D9C:5DCBB6B7", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1918:2E3ED:1342AC7:16FCED6:5DD0FA14", + "content-length": "438" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQwNDU3MTU4OWI4MDAxZGU3MjIxNDM0ODk2MmE2YjY4MjU3NjVkNGY=\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjY4ZDhmMDg0OTIzZDhmOTk5YjI3YWViZWI1ZDZkMTBiOTE4N2M5MGE=\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:43:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "191D:1C98C:22FAF82:29648EE:5DD0FA15", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjY4ZDhmMDg0OTIzZDhmOTk5YjI3YWViZWI1ZDZkMTBiOTE4N2M5MGE=\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -2156,7 +1524,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:31 GMT", + "Date": "Sun, 17 Nov 2019 07:43:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2165,8 +1533,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4923", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2176,11 +1544,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F19:3A596:656045D:7915231:5DCBB6B7", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1922:8070:224B637:28BA2FA:5DD0FA15", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAyNDIzOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkxNjYy\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAyNDIzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjEzODYxOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5MzMw\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjEzODYxOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -2188,7 +1555,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:32 GMT", + "Date": "Sun, 17 Nov 2019 07:43:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2197,8 +1564,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4922", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2208,19 +1575,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F1C:33B0A:8A3934F:A4E0764:5DCBB6B7", - "content-length": "500", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1924:8070:224B6C4:28BA3AD:5DD0FA16", + "content-length": "500" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:36 GMT", + "Date": "Sun, 17 Nov 2019 07:43:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2229,8 +1595,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4921", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2240,19 +1606,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F35:2CFEA:666798E:7A16F93:5DCBB6BC", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1944:23E1B:2DCBCEE:3644B3D:5DD0FA1A", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQwNDU3MTU4OWI4MDAxZGU3MjIxNDM0ODk2MmE2YjY4MjU3NjVkNGY=\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjY4ZDhmMDg0OTIzZDhmOTk5YjI3YWViZWI1ZDZkMTBiOTE4N2M5MGE=\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:54:42 GMT", + "Date": "Sun, 17 Nov 2019 07:43:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2261,8 +1626,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4920", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2272,11 +1637,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F50:BBF8:68E75BB:7D1E9DD:5DCBB6C2", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195B:8070:224BF6D:28BAE24:5DD0FA20", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAyNDIzOjQwNDU3MTU4OWI4MDAxZGU3MjIxNDM0ODk2MmE2YjY4MjU3NjVkNGY=\",\"sha\":\"404571589b8001de72214348962a6b6825765d4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjEzODYxOjY4ZDhmMDg0OTIzZDhmOTk5YjI3YWViZWI1ZDZkMTBiOTE4N2M5MGE=\",\"sha\":\"68d8f084923d8f999b27aebeb5d6d10b9187c90a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json index 0143084a..768d80d0 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:19 GMT", + "Date": "Sun, 17 Nov 2019 07:45:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9cf4fd7f0157fe3072cb7f42ae301efa\"", + "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F39:2CFED:8FF77ED:AB63A36:5DCBB723", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1961:23E1A:2155A95:2792BA4:5DD0FA82", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:20 GMT", + "Date": "Sun, 17 Nov 2019 07:45:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,9 +53,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3D:3A596:6568077:791E6FF:5DCBB723", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1965:2E3EB:2443B8:2B69A2:5DD0FA83", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 @@ -65,13 +63,13 @@ "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:20 GMT", + "Date": "Sun, 17 Nov 2019 07:45:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -83,9 +81,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F42:33B0A:8A4342E:A4ECA71:5DCBB724", - "content-length": "98", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196A:34215:777B68:8F0FE1:5DD0FA83", + "content-length": "98" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/#get\"\n}\n", "status": 404 @@ -94,14 +91,14 @@ "method": "POST", "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:22 GMT", + "Date": "Sun, 17 Nov 2019 07:45:09 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "21923", + "Content-Length": "22055", "Server": "GitHub.com", "Status": "202 Accepted", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -113,27 +110,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F43:33B07:19C2E14:1F19AA5:5DCBB724", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196B:1C98C:2302477:296D358:5DD0FA84" }, - "response": "{\n \"id\": 221403168,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:56:21Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 202 }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:23 GMT", + "Date": "Sun, 17 Nov 2019 07:45:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"af35c4fb34b6b736ae5ab696bcfe0e67\"", - "Last-Modified": "Wed, 13 Nov 2019 07:55:53 GMT", + "ETag": "W/\"47193463b4323dc80f7271c0a24c47b7\"", + "Last-Modified": "Sun, 17 Nov 2019 07:44:38 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -145,11 +141,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4C:33B09:694E033:7DB4BAB:5DCBB726", - "content-length": "22013", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1975:1C993:2CACEDD:34FF806:5DD0FA85", + "content-length": "22145" }, - "response": "{\n \"id\": 221403168,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:56:21Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221402423,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T07:51:45Z\",\n \"updated_at\": \"2019-11-13T07:55:53Z\",\n \"pushed_at\": \"2019-11-13T07:55:51Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222214277,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:45:08Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222213861,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T07:40:38Z\",\n \"updated_at\": \"2019-11-17T07:44:38Z\",\n \"pushed_at\": \"2019-11-17T07:44:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { @@ -157,7 +152,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:23 GMT", + "Date": "Sun, 17 Nov 2019 07:45:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -167,7 +162,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4999", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -177,9 +172,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F51:3A596:65683F4:791EB25:5DCBB727", - "content-length": "176", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1979:470C5:858BB8:9EB808:5DD0FA86", + "content-length": "176" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -189,7 +183,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:24 GMT", + "Date": "Sun, 17 Nov 2019 07:45:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -199,7 +193,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -209,11 +203,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F52:3A595:3DD2372:49E7FEA:5DCBB727", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197A:23E19:13C23FE:1760CED:5DD0FA86", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -221,7 +214,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:24 GMT", + "Date": "Sun, 17 Nov 2019 07:45:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -231,7 +224,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4997", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -241,11 +234,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F59:43EF8:89BBC57:A406A14:5DCBB728", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197D:470CB:2C6686A:348D1E1:5DD0FA87", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -253,7 +245,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:24 GMT", + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -263,7 +255,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4996", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -273,51 +265,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F5D:43EF3:3A1F0F5:45A4C66:5DCBB728", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1980:2E3EC:792E21:9141B7:5DD0FA87", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzE2ODo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNDI3Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:25 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4995", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F66:450E4:8932874:A36C89B:5DCBB729", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:56:25 GMT", + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -327,7 +286,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4994", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -337,51 +296,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F68:3A596:65685FE:791EDA6:5DCBB729", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198D:34218:2E929F0:372B47B:5DD0FA88", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:25 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4993", - "X-RateLimit-Reset": "1573635383", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F67:43EF6:673B9BC:7B3D0A6:5DCBB729", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:56:25 GMT", + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -391,7 +317,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4992", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -401,19 +327,80 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F62:33B05:241418:2C537B:5DCBB729", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198A:470CB:2C6691E:348D2B4:5DD0FA88", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:56:25 GMT", + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1989:23E1B:2DD5235:364FC5D:5DD0FA88", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1573980310", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "198B:2E3F0:2F35CDE:37D7F25:5DD0FA88", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:45:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -423,7 +410,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4991", - "X-RateLimit-Reset": "1573635383", + "X-RateLimit-Reset": "1573980310", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -433,11 +420,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F65:2CFED:8FF813A:AB6454A:5DCBB729", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1990:1C993:2CAD243:34FFC0A:5DD0FA88", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDMxNjg=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzE2ODpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTQyNzc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNDI3NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json index cc36d113..83c7726e 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:23 GMT", + "Date": "Sun, 17 Nov 2019 07:41:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4902", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a276b43fb76d38782de30a12a20e2a9c\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E13:3A596:65574B7:790A524:5DCBB637", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1863:1C98C:22F29B2:295AB95:5DD0F99C", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:24 GMT", + "Date": "Sun, 17 Nov 2019 07:41:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4901", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E18:450D6:69E835E:7E2102A:5DCBB638", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1869:8072:2D51447:35CFACC:5DD0F99D", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -69,7 +67,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:24 GMT", + "Date": "Sun, 17 Nov 2019 07:41:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -79,7 +77,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4999", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -89,9 +87,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E1B:3A596:65575C8:790A678:5DCBB638", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186A:23E1A:21458D7:277FDA3:5DD0F99E", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -101,7 +98,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:25 GMT", + "Date": "Sun, 17 Nov 2019 07:41:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -111,7 +108,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -121,11 +118,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E1C:3A596:655764C:790A71B:5DCBB639", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186E:34217:22B3371:293A4B2:5DD0F99E", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -133,7 +129,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:26 GMT", + "Date": "Sun, 17 Nov 2019 07:41:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -143,7 +139,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4997", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -153,43 +149,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E1F:3A594:1B9D341:212401B:5DCBB639", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1876:8072:2D516CA:35CFDD1:5DD0F99F", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:52:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4996", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E27:43EF8:89A612C:A3EC605:5DCBB63A", - "content-length": "1837", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMjQyMzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -197,7 +160,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:26 GMT", + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -207,7 +170,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4995", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -217,19 +180,49 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E31:33B08:3EAE9DF:4ACA36D:5DCBB63A", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1890:1C981:8B27C0:A4B819:5DD0F99F", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:27 GMT", + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "187F:34218:2E7DC1B:3712B8E:5DD0F99F", + "content-length": "1837" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxMzg2MTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -239,7 +232,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4994", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -249,19 +242,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E40:2CFED:8FDF838:AB46FA4:5DCBB63A", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1891:806E:133AF43:16DE9AD:5DD0F9A0", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:27 GMT", + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -271,7 +263,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4993", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -281,19 +273,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E43:43EF6:672A345:7B28270:5DCBB63A", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1896:23E1A:2145AE0:278001B:5DD0F9A0", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:27 GMT", + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -303,7 +294,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4992", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -313,19 +304,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3F:450D5:3ABE692:46529C1:5DCBB63A", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1898:34217:22B353D:293A6DE:5DD0F9A0", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:52:27 GMT", + "Date": "Sun, 17 Nov 2019 07:41:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -335,7 +325,7 @@ "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4991", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E42:BBF8:68DCF16:7D12365:5DCBB63A", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189A:1C98C:22F2D80:295B01A:5DD0F9A0", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDI0MjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMjQyMzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTM4NjE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxMzg2MTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json index d17bfd98..19bcc48d 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:04 GMT", + "Date": "Sun, 17 Nov 2019 07:57:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4999", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF6:15110:2C22A87:35BCD79:5D7899D0", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1A:2187C9A:27CDB3E:5DD0FD75", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:05 GMT", + "Date": "Sun, 17 Nov 2019 07:57:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4998", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BF9:2B1F:207C072:27C604D:5D7899D1", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B5:34217:22EDC2D:2980AA6:5DD0FD76", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:06 GMT", + "Date": "Sun, 17 Nov 2019 07:57:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4997", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A00:B4E0:291146E:321304F:5D7899D2", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BA:8070:228112E:28FA168:5DD0FD77", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:07 GMT", + "Date": "Sun, 17 Nov 2019 07:57:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4996", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,139 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A0E:1510F:2031F30:2746519:5D7899D2", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BB:23E1A:2187DFA:27CDCDD:5DD0FD77", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4995", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A28:9D21:29956A4:32D30BC:5D7899D3", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1Mzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4994", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A36:244EB:2B09B7A:346F1FB:5D7899D4", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4991", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A40:9D1F:121FA02:162AF61:5D7899D5", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4993", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A42:3ED76:840F8D:A16B7F:5D7899D5", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -260,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:10 GMT", + "Date": "Sun, 17 Nov 2019 07:57:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4992", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,24 +148,152 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A3E:B4E0:2911A0D:321370C:5D7899D5", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C7:23E1B:2E11BE7:36983FB:5DD0FD77", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1Mzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19C6:23E17:281BED:300C34:5DD0FD77", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19C0:23E19:13DA19A:177D7F7:5DD0FD77", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19C4:470C9:2247FD1:28BA810:5DD0FD77", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19C8:2E3F0:2F72A9A:3820D85:5DD0FD77", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:14 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 07:57:47 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4995", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5180cfe5624105b21558ee972b73360cc62358ac\"", + "Last-Modified": "Sun, 17 Nov 2019 07:57:24 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -309,19 +305,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0A:9D1E:8818B8:A66F35:5D7899DA", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D5:1C993:2CE9513:3547AA3:5DD0FD7B" }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", - "status": 404 + "response": "{\"type\":\"PR\",\"pr\":{\"number\":4,\"head\":\"8478bc786b8793f875b6d499df0762d3078a6acf\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:15 GMT", + "Date": "Sun, 17 Nov 2019 07:57:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -330,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4990", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -341,11 +335,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A0C:9D21:2995FEE:32D3C4C:5D7899DA", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470C7:14A47FA:18566FF:5DD0FD7B", + "content-length": "189" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19DB:1C981:8BFE0A:A5B94A:5DD0FD7C", + "content-length": "106" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -353,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:15 GMT", + "Date": "Sun, 17 Nov 2019 07:57:49 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4994", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"719c79267a454dc081e3fd8daa1e3bbc\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -376,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0E:1510E:1314F6A:1754576:5D7899DB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E0:2E3ED:1360ACE:1720CD5:5DD0FD7D" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -387,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:16 GMT", + "Date": "Sun, 17 Nov 2019 07:57:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -396,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -407,292 +430,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A11:3ED7B:20FF86C:282E1B8:5D7899DC", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E1:23E1B:2E122F1:3698C67:5DD0FD7D", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A15:244EB:2B0A989:34702D0:5D7899DC", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A12:15110:2C23EBF:35BE5FA:5D7899DC", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A18:1510C:29112B:3278EC:5D7899DD", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A16:1510C:29112B:3278EB:5D7899DD", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4983", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A1A:244E4:134F832:177C294:5D7899DE", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4984", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A1C:9D1F:121FE87:162B520:5D7899DE", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4993", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d9b38a032a15f36fe6e5463db697ea33\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1F:9D21:2996656:32D443A:5D7899DF", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4992", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f96149522b789a0e92bc93c9c78567f\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A21:244EB:2B0AE86:34708C8:5D7899E0", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:21 GMT", + "Date": "Sun, 17 Nov 2019 07:57:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4991", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"757b5b4b01fcbe6abf1f6dc57e9d3f8c\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -702,31 +464,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A22:1510E:1315256:1754911:5D7899E0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E9:470CB:2C9C0B3:34CE02E:5DD0FD7E" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:22 GMT", + "Date": "Sun, 17 Nov 2019 07:57:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4990", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b72e8a3277a00e5267116e30c1e90f3b\"", + "ETag": "\"ac95abcbf0a6e77109d0a369ee8be7a4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/011f5cc6847ee65088ceedf792d04b1feffdac61", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1057055414a585da15d7093eb623be8d162dd7c7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -736,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A24:3ED7B:20FFE56:282E909:5D7899E1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EE:23E1B:2E12448:3698DF6:5DD0FD7E" }, - "response": "{\n \"sha\": \"011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"html_url\": \"https://github.com/owner/repo/commit/011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:22Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:22Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1057055414a585da15d7093eb623be8d162dd7c7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjEwNTcwNTU0MTRhNTg1ZGExNWQ3MDkzZWI2MjNiZThkMTYyZGQ3Yzc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1057055414a585da15d7093eb623be8d162dd7c7\",\n \"html_url\": \"https://github.com/owner/repo/commit/1057055414a585da15d7093eb623be8d162dd7c7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:51Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:23 GMT", + "Date": "Sun, 17 Nov 2019 07:57:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -756,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -767,24 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A27:3ED7B:20FFF21:282EA09:5D7899E2", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EF:23E1A:2188580:27CE5DB:5DD0FD7F", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NjU1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjEwNTcwNTU0MTRhNTg1ZGExNWQ3MDkzZWI2MjNiZThkMTYyZGQ3Yzc=\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTcy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"number\":5,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:24 GMT", + "Date": "Sun, 17 Nov 2019 07:57:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c31171d70eeb88a7dbf177c48789f7a3\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -797,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A28:9D20:1F52A16:265BC64:5D7899E4", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F9:8072:2DAA372:363863A:5DD0FD81", + "content-length": "482" }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", - "status": 404 + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6289f9622ad913f21b32f33239f33ff751d0c100\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6289f9622ad913f21b32f33239f33ff751d0c100\"\n }\n}\n", + "status": 200 }, { - "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOiIxMDU3MDU1NDE0YTU4NWRhMTVkNzA5M2ViNjIzYmU4ZDE2MmRkN2M3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:25 GMT", + "Date": "Sun, 17 Nov 2019 07:57:54 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"434409a640611d574828dc3176db0844\"", + "ETag": "\"0c48492f5c573e8bfba2f582e89da4c8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -832,231 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2A:B4E0:2912FDA:3215196:5D7899E5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FE:23E1A:21887B6:27CE86A:5DD0FD82" }, - "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "response": "{\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n}\n", "status": 201 }, { - "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "body": "{\"base_tree\":\"6289f9622ad913f21b32f33239f33ff751d0c100\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"11cdca59a8431b78a55772261e7fa9eaed728814\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "559", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4b7a9a93c050c0d089284a4134d86334\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2C:3ED77:13033F2:1721262:5D7899E5", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1102", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f27ca049fa3d9c4cf23fe24e82e9ad2b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2E:244EB:2B0B7C8:3471403:5D7899E6", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"html_url\": \"https://github.com/owner/repo/commit/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:26Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:26Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"}", - "method": "POST", - "url": "/repos/owner/repo/git/refs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "482", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bdc07774af81d1e6c0641b8a61058fb7\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A30:B4E0:2913325:3215597:5D7899E7", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"\n }\n}\n", - "status": 201 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIwMTFmNWNjNjg0N2VlNjUwODhjZWVkZjc5MmQwNGIxZmVmZmRhYzYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "206", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4984", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2fda14799a07bce918aa407f98125307\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A32:9D1F:1220311:162BAEC:5D7899E8", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n}\n", - "status": 201 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A34:B4DA:9336E9:B3D3DB:5D7899E9", - "content-length": "558", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A36:244E1:8B5DD5:A94EE2:5D7899E9", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:30 GMT", + "Date": "Sun, 17 Nov 2019 07:57:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4983", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5bbf9dd70ffd66055a37626c772e2153\"", + "ETag": "\"af53c370bfda5eb2e0b55dda3658e2b5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1066,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A38:2B19:12E418A:170C52C:5D7899E9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1803:1C993:2CE9DD0:354850C:5DD0FD83" }, - "response": "{\n \"sha\": \"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\"parents\":[\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68\",\"parents\":[\"6289f9622ad913f21b32f33239f33ff751d0c100\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:31 GMT", + "Date": "Sun, 17 Nov 2019 07:57:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"84fc3a9cf3fbf30fae7ce26c352076ca\"", + "ETag": "\"0656745876afca23e6d95bba68f0c807\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c", + "Location": "https://api.github.com/repos/owner/repo/git/commits/380ff5a18ecc5e020cafb2bee95df45619553e24", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1100,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3D:B4E0:29136EF:3215A3C:5D7899EA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1804:8070:2281C57:28FAEDE:5DD0FD83" }, - "response": "{\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:31Z\"\n },\n \"tree\": {\n \"sha\": \"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"html_url\": \"https://github.com/owner/repo/commit/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjM4MGZmNWExOGVjYzVlMDIwY2FmYjJiZWU5NWRmNDU2MTk1NTNlMjQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"html_url\": \"https://github.com/owner/repo/commit/380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:56Z\"\n },\n \"tree\": {\n \"sha\": \"ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ec246a4aaf568f7f3d5c6a2ffa87f29db987cb68\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"6289f9622ad913f21b32f33239f33ff751d0c100\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6289f9622ad913f21b32f33239f33ff751d0c100\",\n \"html_url\": \"https://github.com/owner/repo/commit/6289f9622ad913f21b32f33239f33ff751d0c100\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"force\":false}", + "body": "{\"sha\":\"380ff5a18ecc5e020cafb2bee95df45619553e24\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:32 GMT", + "Date": "Sun, 17 Nov 2019 07:57:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a915d6dd9676a7435f6c821820d39f40\"", + "ETag": "W/\"3a92deaab6915ea2212ef5bc2564652c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1132,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3E:B4DC:13513EE:178458A:5D7899EB", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1809:34217:22EE947:2981A52:5DD0FD84", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/380ff5a18ecc5e020cafb2bee95df45619553e24\"\n }\n}\n", "status": 200 }, { @@ -1144,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:33 GMT", + "Date": "Sun, 17 Nov 2019 07:57:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1153,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1164,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A3F:3ED82:2C362CC:35E1B24:5D7899EC", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180E:23E1A:2188ADE:27CEC33:5DD0FD85", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:34 GMT", + "Date": "Sun, 17 Nov 2019 07:57:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1185,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1196,56 +753,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A42:3ED82:2C3649C:35E1D56:5D7899EE", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1813:470CB:2C9C7C3:34CE8FB:5DD0FD86", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:40 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A46:244EB:2B0CA2A:3472A93:5D7899F4", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjEwNTcwNTU0MTRhNTg1ZGExNWQ3MDkzZWI2MjNiZThkMTYyZGQ3Yzc=\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-second-title.json?ts=600&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:41 GMT", + "Date": "Sun, 17 Nov 2019 07:58:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1257,9 +781,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A48:244E1:8B60B2:A95273:5D7899F4", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1824:806C:873AF1:A0CF7D:5DD0FD8A", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1269,7 +792,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:41 GMT", + "Date": "Sun, 17 Nov 2019 07:58:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1278,8 +801,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1289,11 +812,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A4B:244E7:1FBE778:26D4A39:5D7899F5", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1829:806E:135D475:170777F:5DD0FD8B", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1301,17 +823,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:42 GMT", + "Date": "Sun, 17 Nov 2019 07:58:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"315784e692ac4702c482418bb176e236\"", + "ETag": "\"270cfa4a754e5f3983cdf8d1078b980e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab", @@ -1324,18 +846,48 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A4C:B4DA:933BB3:B3D99A:5D7899F6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182A:470C9:2249176:28BBD70:5DD0FD8B" }, "response": "{\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n}\n", "status": 201 }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:58:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "182F:2E3F0:2F74229:3822A10:5DD0FD8B", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjEwNTcwNTU0MTRhNTg1ZGExNWQ3MDkzZWI2MjNiZThkMTYyZGQ3Yzc=\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, { "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:43 GMT", + "Date": "Sun, 17 Nov 2019 07:58:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1344,8 +896,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1355,100 +907,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A4E:2B24:2AAB0C8:340794D:5D7899F7", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2CEABA5:354955E:5DD0FD8C", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2356", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2a96544e6c0200cdfe209aaeb2906317\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A50:2B19:12E4859:170CDEE:5D7899F7", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-second-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"e58a266291a019859cf05afac9d176f7f55fb83d\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f877d461d7f27987709e7d58688a4b1e\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A52:244E1:8B619B:A953A1:5D7899F8", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:46 GMT", + "Date": "Sun, 17 Nov 2019 07:58:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f008e4e17778ab969576c7352b73bc08\"", + "ETag": "\"4dc659a00bedf81783ff0c2187e4d7df\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622", + "Location": "https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1458,63 +941,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A54:2B19:12E4989:170CF61:5D7899F9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1835:470C5:8661B3:9FB19A:5DD0FD8C" }, - "response": "{\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A56:244E7:1FBEC35:26D500F:5D7899F9", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"f05508ef4df2f4355ee404e0381fd8671970aeba\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:46 GMT", + "Date": "Sun, 17 Nov 2019 07:58:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1500", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5a18d83099a99554fbc223b381922854\"", + "ETag": "\"a7d25235a624035336331cd6c0227e89\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/25198bd14651f479ce29f3e0853fc6b40038998d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1524,18 +974,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A58:244E7:1FBECB8:26D50A2:5D7899FA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1836:34218:2ED3354:377830A:5DD0FD8D" }, - "response": "{\n \"sha\": \"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"html_url\": \"https://github.com/owner/repo/commit/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:46Z\"\n },\n \"tree\": {\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"25198bd14651f479ce29f3e0853fc6b40038998d\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjI1MTk4YmQxNDY1MWY0NzljZTI5ZjNlMDg1M2ZjNmI0MDAzODk5OGQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/25198bd14651f479ce29f3e0853fc6b40038998d\",\n \"html_url\": \"https://github.com/owner/repo/commit/25198bd14651f479ce29f3e0853fc6b40038998d\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:05Z\"\n },\n \"tree\": {\n \"sha\": \"f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-second-title\",\"oid\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-second-title”\",\"headRefName\":\"cms/1970-01-01-second-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-second-title\",\"oid\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-second-title”\",\"headRefName\":\"cms/1970-01-01-second-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:48 GMT", + "Date": "Sun, 17 Nov 2019 07:58:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1544,8 +993,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1555,28 +1004,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5A:1510E:1316070:1755AD5:5D7899FB", - "content-length": "959", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183B:2E3F0:2F74629:3822EB1:5DD0FD8E", + "content-length": "959" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NzY2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-second-title\",\"headRefOid\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-second-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjI1MTk4YmQxNDY1MWY0NzljZTI5ZjNlMDg1M2ZjNmI0MDAzODk5OGQ=\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTgx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-second-title\",\"headRefOid\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"number\":6,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-second-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:49 GMT", + "Date": "Sun, 17 Nov 2019 07:58:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a915d6dd9676a7435f6c821820d39f40\"", - "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "ETag": "W/\"3a92deaab6915ea2212ef5bc2564652c\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1589,32 +1037,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5C:15110:2C26C32:35C1D84:5D7899FC", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1844:2E3EB:247D36:2BACE3:5DD0FD90", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/380ff5a18ecc5e020cafb2bee95df45619553e24\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI3YmQ1ZThjMTE4NmFmZDgzMjdjZmFhZTBmNTJhZDU2NDNmNGRkZThhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOiIyNTE5OGJkMTQ2NTFmNDc5Y2UyOWYzZTA4NTNmYzZiNDAwMzg5OThkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:50 GMT", + "Date": "Sun, 17 Nov 2019 07:58:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d259d51c74dbf0d483f3b0eba8010fc4\"", + "ETag": "\"e7c6ead986a7a5e60a34a3d49e1b735f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/498fd892bca81383d0d9388b7407789e0a3ba7d3", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1624,18 +1071,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5E:244E4:1350AAB:177D993:5D7899FD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1845:8072:2DABA45:363A12E:5DD0FD90" }, - "response": "{\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n}\n", + "response": "{\n \"sha\": \"498fd892bca81383d0d9388b7407789e0a3ba7d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/498fd892bca81383d0d9388b7407789e0a3ba7d3\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:50 GMT", + "Date": "Sun, 17 Nov 2019 07:58:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1644,8 +1090,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4772", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1655,64 +1101,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A61:1510F:2034C83:2749CE6:5D7899FE", - "content-length": "698", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184F:2E3ED:13617E1:1721C18:5DD0FD91", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowYzcwMDdmYmNjYTIxODIxOWE4YjA2MDZhZDM0MDhjZjFhMTYwY2U1\",\"sha\":\"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjEwNTcwNTU0MTRhNTg1ZGExNWQ3MDkzZWI2MjNiZThkMTYyZGQ3Yzc=\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:53:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A62:244E7:1FBF19C:26D56AA:5D7899FE", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\"}]}", + "body": "{\"base_tree\":\"380ff5a18ecc5e020cafb2bee95df45619553e24\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"498fd892bca81383d0d9388b7407789e0a3ba7d3\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:51 GMT", + "Date": "Sun, 17 Nov 2019 07:58:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1226", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9d3566f90fcc118795f284871f1ea16c\"", + "ETag": "\"a8ee627c8d3f8f508ee2b6d4cf368f47\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796", + "Location": "https://api.github.com/repos/owner/repo/git/trees/96d3442fcec78fbfc646fb4ec7c331f6b09945d9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1722,31 +1135,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A64:15110:2C26F68:35C219D:5D7899FF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184B:2E3EE:22C726D:294865A:5DD0FD91" }, - "response": "{\n \"sha\": \"db43443b21539a2ba7e5cf67915002973e14f796\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"96d3442fcec78fbfc646fb4ec7c331f6b09945d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/96d3442fcec78fbfc646fb4ec7c331f6b09945d9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"498fd892bca81383d0d9388b7407789e0a3ba7d3\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/498fd892bca81383d0d9388b7407789e0a3ba7d3\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"db43443b21539a2ba7e5cf67915002973e14f796\",\"parents\":[\"5052e099af3be77c32ebc008887afce9be9c0d6c\"]}", + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"96d3442fcec78fbfc646fb4ec7c331f6b09945d9\",\"parents\":[\"380ff5a18ecc5e020cafb2bee95df45619553e24\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:52 GMT", + "Date": "Sun, 17 Nov 2019 07:58:10 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1506", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4752", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"11381e86e1e93e606acc2160d0f741a3\"", + "ETag": "\"0dbae6336d31e52992e49c0ccb1046e8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0", + "Location": "https://api.github.com/repos/owner/repo/git/commits/df6ad79b4157d74204a3b8b85f386d02e1d76eb8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1756,27 +1168,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A66:3ED70:AD8FB:DA28A:5D7899FF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1850:23E1B:2E13F44:369ADE1:5DD0FD92" }, - "response": "{\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"html_url\": \"https://github.com/owner/repo/commit/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:52Z\"\n },\n \"tree\": {\n \"sha\": \"db43443b21539a2ba7e5cf67915002973e14f796\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OmRmNmFkNzliNDE1N2Q3NDIwNGEzYjhiODVmMzg2ZDAyZTFkNzZlYjg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"html_url\": \"https://github.com/owner/repo/commit/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:10Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:10Z\"\n },\n \"tree\": {\n \"sha\": \"96d3442fcec78fbfc646fb4ec7c331f6b09945d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/96d3442fcec78fbfc646fb4ec7c331f6b09945d9\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/380ff5a18ecc5e020cafb2bee95df45619553e24\",\n \"html_url\": \"https://github.com/owner/repo/commit/380ff5a18ecc5e020cafb2bee95df45619553e24\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"force\":false}", + "body": "{\"sha\":\"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:53 GMT", + "Date": "Sun, 17 Nov 2019 07:58:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4751", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"69b0146fa07f492d018d013892232223\"", + "ETag": "W/\"974b7a93ef14296337fb7c0b76f4fb8e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1788,11 +1199,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A68:3ED7B:2101D3B:2830F65:5D789A00", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1852:34218:2ED3AEA:3778C2D:5DD0FD92", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\"\n }\n}\n", "status": 200 }, { @@ -1800,7 +1210,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:54 GMT", + "Date": "Sun, 17 Nov 2019 07:58:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1809,8 +1219,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4771", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1820,19 +1230,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A6B:9D20:1F549A9:265E356:5D789A02", - "content-length": "500", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185B:23E1B:2E14200:369B124:5DD0FD93", + "content-length": "500" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:53:56 GMT", + "Date": "Sun, 17 Nov 2019 07:58:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1841,8 +1250,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4770", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1852,56 +1261,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A6C:2B15:893369:A723F0:5D789A03", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185C:470C9:2249AF7:28BC8B0:5DD0FD94", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A72:244EB:2B0E83F:3474F59:5D789A09", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjI1MTk4YmQxNDY1MWY0NzljZTI5ZjNlMDg1M2ZjNmI0MDAzODk5OGQ=\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-third-title.json?ts=900&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:03 GMT", + "Date": "Sun, 17 Nov 2019 07:58:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4750", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1913,9 +1289,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A74:B4DE:202D3C2:27439C3:5D789A0A", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187D:8072:2DAC5B0:363AE98:5DD0FD98", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1925,7 +1300,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:03 GMT", + "Date": "Sun, 17 Nov 2019 07:58:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1934,8 +1309,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1945,11 +1320,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A77:3ED82:2C38FE1:35E5248:5D789A0B", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187E:470C9:2249FD6:28BCE6A:5DD0FD99", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -1957,17 +1331,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:04 GMT", + "Date": "Sun, 17 Nov 2019 07:58:18 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4749", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"aa4e0296a478f86c0189cfb6925244bc\"", + "ETag": "\"859d96b7c9a0609b94cb57f6a7fbe715\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2", @@ -1980,18 +1354,48 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A79:15110:2C284B1:35C3B23:5D789A0C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1887:34218:2ED43C7:37796F3:5DD0FD99" }, "response": "{\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n}\n", "status": 201 }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:58:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1888:1C98C:2331653:29A5B29:5DD0FD9A", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjI1MTk4YmQxNDY1MWY0NzljZTI5ZjNlMDg1M2ZjNmI0MDAzODk5OGQ=\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, { "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:05 GMT", + "Date": "Sun, 17 Nov 2019 07:58:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2000,8 +1404,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2011,100 +1415,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A2E:244E4:1351526:177E61F:5D789A0D", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188A:34217:22EFFBD:2983544:5DD0FD9A", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"89eccbeb34dfd1496ce8a9619f20bc08\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A30:B4E0:291685C:3219687:5D789A0D", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-third-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=900", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1568188349", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"30882790316d440049c8da72fd904eac\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A32:9D20:1F55838:265F4E9:5D789A0E", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"171202850395a6ac687cc4cc318bd28037cbc4da\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=900", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:07 GMT", + "Date": "Sun, 17 Nov 2019 07:58:19 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fbc67a0455aa8af0375d4b38b3970587\"", + "ETag": "\"bd59e88de8c78e3dd8f2c7bb0545c575\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6", + "Location": "https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2114,63 +1449,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A34:B4D7:2DD784:38318A:5D789A0F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:8070:2283485:28FCB5F:5DD0FD9B" }, - "response": "{\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A36:244EB:2B0F3D1:3475CD3:5D789A0F", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"e619cfb3515277852b8b0574a0984d17c99ce33f\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:08 GMT", + "Date": "Sun, 17 Nov 2019 07:58:20 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4747", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4e48b96e29e7ab58dd45e99e0383007d\"", + "ETag": "\"4e5c249aadcc291945a8ca56b75beb7b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf", + "Location": "https://api.github.com/repos/owner/repo/git/commits/237aa69b745745ef4625604a7d5699e46be43f9a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2180,18 +1482,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A38:2B19:12E5752:170E054:5D789A10", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188D:23E1A:218A0A5:27D061B:5DD0FD9B" }, - "response": "{\n \"sha\": \"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"html_url\": \"https://github.com/owner/repo/commit/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:08Z\"\n },\n \"tree\": {\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"237aa69b745745ef4625604a7d5699e46be43f9a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjIzN2FhNjliNzQ1NzQ1ZWY0NjI1NjA0YTdkNTY5OWU0NmJlNDNmOWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/237aa69b745745ef4625604a7d5699e46be43f9a\",\n \"html_url\": \"https://github.com/owner/repo/commit/237aa69b745745ef4625604a7d5699e46be43f9a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:20Z\"\n },\n \"tree\": {\n \"sha\": \"e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-third-title\",\"oid\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-third-title”\",\"headRefName\":\"cms/1970-01-01-third-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-third-title\",\"oid\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-third-title”\",\"headRefName\":\"cms/1970-01-01-third-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:10 GMT", + "Date": "Sun, 17 Nov 2019 07:58:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2200,8 +1501,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2211,28 +1512,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A3D:B4D7:2DD7B4:3831C1:5D789A11", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1891:8070:2283607:28FCD2F:5DD0FD9C", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5ODY5\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-third-title\",\"headRefOid\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-third-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIzN2FhNjliNzQ1NzQ1ZWY0NjI1NjA0YTdkNTY5OWU0NmJlNDNmOWE=\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTk1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-third-title\",\"headRefOid\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"number\":7,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-third-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:11 GMT", + "Date": "Sun, 17 Nov 2019 07:58:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"69b0146fa07f492d018d013892232223\"", - "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "ETag": "W/\"974b7a93ef14296337fb7c0b76f4fb8e\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2245,32 +1545,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3E:B4DC:1353048:17867A8:5D789A12", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189A:1C98C:2331A68:29A5FFE:5DD0FD9E", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0MWZlMjEwZThiNzhiZjBkYTIzNjBkY2VmMWU2MWQ3YzRjZGRkZmJmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOiIyMzdhYTY5Yjc0NTc0NWVmNDYyNTYwNGE3ZDU2OTllNDZiZTQzZjlhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:12 GMT", + "Date": "Sun, 17 Nov 2019 07:58:23 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"23185b8a2c33de2bbac58e47c9191489\"", + "ETag": "\"5be7d0bc9e0d3b469c43746704caba09\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6dc8728895385c62c202c1e7af36e1752cb7f9ad", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2280,18 +1579,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3F:3ED7B:2103321:2832A03:5D789A13", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A0:34217:22F035A:2983993:5DD0FD9E" }, - "response": "{\n \"sha\": \"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004\"\n}\n", + "response": "{\n \"sha\": \"6dc8728895385c62c202c1e7af36e1752cb7f9ad\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6dc8728895385c62c202c1e7af36e1752cb7f9ad\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:12 GMT", + "Date": "Sun, 17 Nov 2019 07:58:24 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2300,8 +1598,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2311,64 +1609,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A40:9D20:1F55EFF:265FD40:5D789A14", - "content-length": "839", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A5:2E3ED:1362098:1722624:5DD0FD9F", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzpkYjQzNDQzYjIxNTM5YTJiYTdlNWNmNjc5MTUwMDI5NzNlMTRmNzk2\",\"sha\":\"db43443b21539a2ba7e5cf67915002973e14f796\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjI1MTk4YmQxNDY1MWY0NzljZTI5ZjNlMDg1M2ZjNmI0MDAzODk5OGQ=\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A42:3ED82:2C39F63:35E64B1:5D789A14", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1f2d13143a2c5dc075d8d12b86955db424ca1004\"}]}", + "body": "{\"base_tree\":\"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6dc8728895385c62c202c1e7af36e1752cb7f9ad\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:13 GMT", + "Date": "Sun, 17 Nov 2019 07:58:24 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0e02d730e48cf79b28c5859594e99d4f\"", + "ETag": "\"bb3fddcac989109fd20fc415a65088e9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/477022024ce4f5dec31f374eb4bb2bac791ade6f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2378,31 +1643,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A44:244EB:2B0FD27:34767E8:5D789A14", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A3:2E3ED:136208F:1722612:5DD0FD9F" }, - "response": "{\n \"sha\": \"a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"477022024ce4f5dec31f374eb4bb2bac791ade6f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/477022024ce4f5dec31f374eb4bb2bac791ade6f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"498fd892bca81383d0d9388b7407789e0a3ba7d3\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/498fd892bca81383d0d9388b7407789e0a3ba7d3\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6dc8728895385c62c202c1e7af36e1752cb7f9ad\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6dc8728895385c62c202c1e7af36e1752cb7f9ad\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"a03c2abe8303f7623a51018df368bcd36280dbd1\",\"parents\":[\"31fcff80002dee97acbef83856cfb81b172f19e0\"]}", + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"477022024ce4f5dec31f374eb4bb2bac791ade6f\",\"parents\":[\"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:14 GMT", + "Date": "Sun, 17 Nov 2019 07:58:25 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"73d6c295dd38f4a113cc20e8f22e16b5\"", + "ETag": "\"86a94520e65116797d36bd319ea3f9b7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4a726d9f362f7d56261aeda38162465abd582373", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2412,27 +1676,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A46:244E7:1FC0B2C:26D75C5:5D789A15", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A9:34218:2ED4B58:3779FF5:5DD0FDA0" }, - "response": "{\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:13Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:13Z\"\n },\n \"tree\": {\n \"sha\": \"a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"html_url\": \"https://github.com/owner/repo/commit/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4a726d9f362f7d56261aeda38162465abd582373\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjRhNzI2ZDlmMzYyZjdkNTYyNjFhZWRhMzgxNjI0NjVhYmQ1ODIzNzM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a726d9f362f7d56261aeda38162465abd582373\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a726d9f362f7d56261aeda38162465abd582373\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:24Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:24Z\"\n },\n \"tree\": {\n \"sha\": \"477022024ce4f5dec31f374eb4bb2bac791ade6f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/477022024ce4f5dec31f374eb4bb2bac791ade6f\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\",\n \"html_url\": \"https://github.com/owner/repo/commit/df6ad79b4157d74204a3b8b85f386d02e1d76eb8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"force\":false}", + "body": "{\"sha\":\"4a726d9f362f7d56261aeda38162465abd582373\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:15 GMT", + "Date": "Sun, 17 Nov 2019 07:58:26 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4742", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0622133f70f4b392b1070b89e5eafae9\"", + "ETag": "W/\"3ee8e400ccdece6b57d09bb47ce5d5ea\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2444,11 +1707,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A48:244E1:8B69EA:A95DDD:5D789A16", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AE:2E3F0:2F75EF4:3824C23:5DD0FDA1", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a726d9f362f7d56261aeda38162465abd582373\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a726d9f362f7d56261aeda38162465abd582373\"\n }\n}\n", "status": 200 }, { @@ -2456,7 +1718,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:16 GMT", + "Date": "Sun, 17 Nov 2019 07:58:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2465,8 +1727,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2476,19 +1738,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A4B:244EB:2B101C0:3476D86:5D789A17", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BA:8070:2283BA8:28FD3E5:5DD0FDA2", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:17 GMT", + "Date": "Sun, 17 Nov 2019 07:58:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2497,8 +1758,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2508,11 +1769,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A4E:2B1F:20810A1:27CC264:5D789A19", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C0:470C7:14A5E86:18581C5:5DD0FDA3", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIzN2FhNjliNzQ1NzQ1ZWY0NjI1NjA0YTdkNTY5OWU0NmJlNDNmOWE=\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -2520,7 +1780,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Date": "Sun, 17 Nov 2019 07:58:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2529,8 +1789,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2540,75 +1800,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A50:2B19:12E5D56:170E7AD:5D789A19", - "content-length": "1279", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C1:2E3F0:2F7622A:3825001:5DD0FDA4", + "content-length": "1279" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NjU1\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NzY2\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtdGhpcmQtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5ODY5\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-third-title:content/posts/1970-01-01-third-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A56:244E4:1351EC6:177F1C2:5D789A1A", - "content-length": "496", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-second-title:content/posts/1970-01-01-second-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A54:2B1F:208120B:27CC422:5D789A1A", - "content-length": "500", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTcy\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTgx\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtdGhpcmQtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTk1\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -2616,7 +1811,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Date": "Sun, 17 Nov 2019 07:58:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2625,8 +1820,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2636,28 +1831,89 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A52:244E7:1FC10B6:26D7C6D:5D789A1A", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C3:2E3EE:22C87C1:2949F43:5DD0FDA4", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-third-title:content/posts/1970-01-01-third-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:58:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18C6:806E:135E171:17086F2:5DD0FDA4", + "content-length": "496" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-second-title:content/posts/1970-01-01-second-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:58:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18C4:470C9:224AACC:28BDB7D:5DD0FDA4", + "content-length": "500" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:20 GMT", + "Date": "Sun, 17 Nov 2019 07:58:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4958", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4741", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0622133f70f4b392b1070b89e5eafae9\"", - "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "ETag": "W/\"3ee8e400ccdece6b57d09bb47ce5d5ea\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2670,32 +1926,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A58:244E4:135200C:177F35E:5D789A1C", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C8:1C981:8C0664:A5C334:5DD0FDA5", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a726d9f362f7d56261aeda38162465abd582373\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a726d9f362f7d56261aeda38162465abd582373\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0MWZlMjEwZThiNzhiZjBkYTIzNjBkY2VmMWU2MWQ3YzRjZGRkZmJmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOiIyMzdhYTY5Yjc0NTc0NWVmNDYyNTYwNGE3ZDU2OTllNDZiZTQzZjlhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:21 GMT", + "Date": "Sun, 17 Nov 2019 07:58:30 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4957", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4740", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9a076008a7fa96033459cb51c46712e0\"", + "ETag": "\"89129492cc4885eeb077a248611cb88d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2705,95 +1960,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5A:15110:2C2A099:35C5C7A:5D789A1C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CD:8070:2283EA3:28FD773:5DD0FDA6" }, - "response": "{\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n}\n", + "response": "{\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5E:244EB:2B10946:34776C3:5D789A1D", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5C:1510D:7F7AF0:9C5A85:5D789A1D", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzphMDNjMmFiZTgzMDNmNzYyM2E1MTAxOGRmMzY4YmNkMzYyODBkYmQx\",\"sha\":\"a03c2abe8303f7623a51018df368bcd36280dbd1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\"}]}", + "body": "{\"base_tree\":\"4a726d9f362f7d56261aeda38162465abd582373\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2650b107fa2f09bb29339e5d3fb2e201154afe5e\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:22 GMT", + "Date": "Sun, 17 Nov 2019 07:58:31 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4739", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"eededa0506df868aa7fb8763d14db97e\"", + "ETag": "\"f9701eb47af3ac42e0e9f786ab699725\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8760c7b04d75e0be7be8c53d33139a601b3ab094", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2803,63 +1993,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A61:15110:2C2A2AE:35C5EEF:5D789A1D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CE:34215:7827B4:8FDDF2:5DD0FDA6" }, - "response": "{\n \"sha\": \"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"8760c7b04d75e0be7be8c53d33139a601b3ab094\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8760c7b04d75e0be7be8c53d33139a601b3ab094\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"498fd892bca81383d0d9388b7407789e0a3ba7d3\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/498fd892bca81383d0d9388b7407789e0a3ba7d3\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A64:1510E:13179A1:175798A:5D789A1F", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\"parents\":[\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"]}", + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"8760c7b04d75e0be7be8c53d33139a601b3ab094\",\"parents\":[\"4a726d9f362f7d56261aeda38162465abd582373\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:23 GMT", + "Date": "Sun, 17 Nov 2019 07:58:32 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4738", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"47d398a8c45e4cd12328d406d96047a4\"", + "ETag": "\"c2d00a98657d998c802ddfe9636a8d5d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650", + "Location": "https://api.github.com/repos/owner/repo/git/commits/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2869,27 +2026,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A62:244E7:1FC1551:26D8203:5D789A1E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D3:470CB:2C9F0B6:34D19D8:5DD0FDA7" }, - "response": "{\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"html_url\": \"https://github.com/owner/repo/commit/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:23Z\"\n },\n \"tree\": {\n \"sha\": \"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0Ojk0NmQ1MzU1ZDFiYTYxNzFlZDBiM2ZiZjZhN2MwMGNjNzE0Mjk2YTQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:31Z\"\n },\n \"tree\": {\n \"sha\": \"8760c7b04d75e0be7be8c53d33139a601b3ab094\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8760c7b04d75e0be7be8c53d33139a601b3ab094\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4a726d9f362f7d56261aeda38162465abd582373\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a726d9f362f7d56261aeda38162465abd582373\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a726d9f362f7d56261aeda38162465abd582373\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"force\":false}", + "body": "{\"sha\":\"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:24 GMT", + "Date": "Sun, 17 Nov 2019 07:58:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4954", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4737", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2f0d31778486fc11c0a0285a18f08f90\"", + "ETag": "W/\"cd528a6c26b80a3237814d7e97e4f737\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2901,28 +2057,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A66:3ED7B:2103FFA:28339AE:5D789A1F", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DB:470C9:224AE31:28BDFA5:5DD0FDA8", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:58:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18E1:1C993:2CECE7C:354BF18:5DD0FDA9", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIzN2FhNjliNzQ1NzQ1ZWY0NjI1NjA0YTdkNTY5OWU0NmJlNDNmOWE=\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:28 GMT", + "Date": "Sun, 17 Nov 2019 07:58:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4953", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4736", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2f0d31778486fc11c0a0285a18f08f90\"", - "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "ETag": "W/\"cd528a6c26b80a3237814d7e97e4f737\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2935,64 +2121,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A6C:2B19:12E623C:170EDC4:5D789A23", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E6:34218:2ED5680:377AD70:5DD0FDAA", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\"\n }\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A71:15110:2C2AD53:35C6BB5:5D789A24", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI3YmQ1ZThjMTE4NmFmZDgzMjdjZmFhZTBmNTJhZDU2NDNmNGRkZThhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOiIyNTE5OGJkMTQ2NTFmNDc5Y2UyOWYzZTA4NTNmYzZiNDAwMzg5OThkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:29 GMT", + "Date": "Sun, 17 Nov 2019 07:58:35 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4952", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4735", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ed20c4b7643fd5366a9732334e480eac\"", + "ETag": "\"9f94e1f24335922c3fa4b2e713073785\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3002,95 +2155,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A6E:2B15:893C16:A72EC0:5D789A24", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E7:806E:135E46A:1708A88:5DD0FDAA" }, - "response": "{\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n}\n", + "response": "{\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A72:244E4:13525C7:177FA51:5D789A25", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo5NDk5YWNlMjBlNTgwNGMzN2ViZGI2ODZhNDczNWIxY2ZkZDE2ZTJh\",\"sha\":\"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:30 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A74:B4DE:202F2D6:2745EF0:5D789A25", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"}]}", + "body": "{\"base_tree\":\"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a8a2223c5c014706f4ca73082bad30a1abf3fe85\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:30 GMT", + "Date": "Sun, 17 Nov 2019 07:58:35 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4951", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4734", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e5a83a5e07414e6c6ef5afe2e5e461b7\"", + "ETag": "\"f80240cef19016ae497cdefe82ae7386\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d", + "Location": "https://api.github.com/repos/owner/repo/git/trees/42b405f44f77be07577b4acb349e0da456885677", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3100,31 +2188,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A79:15110:2C2AFE4:35C6ED6:5D789A26", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EC:34217:22F0E3E:29846AD:5DD0FDAB" }, - "response": "{\n \"sha\": \"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"42b405f44f77be07577b4acb349e0da456885677\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/42b405f44f77be07577b4acb349e0da456885677\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11cdca59a8431b78a55772261e7fa9eaed728814\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11cdca59a8431b78a55772261e7fa9eaed728814\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\"parents\":[\"16802458ee825dbb156c9ec29eaa99ade9155650\"]}", + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"42b405f44f77be07577b4acb349e0da456885677\",\"parents\":[\"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:31 GMT", + "Date": "Sun, 17 Nov 2019 07:58:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1506", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4950", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4733", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5034146f871066a905560d5d7fa4baf2\"", + "ETag": "\"653ed490b4143e7b8ed85bb8d76b4095\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7", + "Location": "https://api.github.com/repos/owner/repo/git/commits/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3134,27 +2221,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A7A:2B1F:2081ECB:27CD3E9:5D789A26", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F1:34218:2ED58A5:377B018:5DD0FDAC" }, - "response": "{\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:31Z\"\n },\n \"tree\": {\n \"sha\": \"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"html_url\": \"https://github.com/owner/repo/commit/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OmVjYTY4YWQ5ZjAxZTEzNmRlM2ExYmU2YTQ3OWM3YThjYzc1ZDIwZDE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"html_url\": \"https://github.com/owner/repo/commit/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:36Z\"\n },\n \"tree\": {\n \"sha\": \"42b405f44f77be07577b4acb349e0da456885677\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/42b405f44f77be07577b4acb349e0da456885677\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/946d5355d1ba6171ed0b3fbf6a7c00cc714296a4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"force\":false}", + "body": "{\"sha\":\"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:32 GMT", + "Date": "Sun, 17 Nov 2019 07:58:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4732", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d2f99acfafe1b6b0690b09196b6a9b3a\"", + "ETag": "W/\"49da1b728d97557bb43d1a7374063cce\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3166,28 +2252,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A7C:2B19:12E6414:170F02A:5D789A27", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F2:23E1B:2E160F6:369D64C:5DD0FDAC", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:33 GMT", + "Date": "Sun, 17 Nov 2019 07:58:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4731", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d2f99acfafe1b6b0690b09196b6a9b3a\"", - "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "ETag": "W/\"49da1b728d97557bb43d1a7374063cce\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -3200,32 +2285,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A7E:9D21:299C773:32DBBB1:5D789A29", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:8070:228463E:28FE06E:5DD0FDAD", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIwMTFmNWNjNjg0N2VlNjUwODhjZWVkZjc5MmQwNGIxZmVmZmRhYzYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOiIxMDU3MDU1NDE0YTU4NWRhMTVkNzA5M2ViNjIzYmU4ZDE2MmRkN2M3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:34 GMT", + "Date": "Sun, 17 Nov 2019 07:58:38 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4730", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3259cb45bbf37ea8aee3237df4dd5b70\"", + "ETag": "\"bda413cf8a9b1eee3f328a0531e2fedd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b8e538126ea77acce303bfb527c397363954a770", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3235,18 +2319,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A82:15110:2C2B570:35C7579:5D789A2A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1900:34218:2ED5B77:377B37C:5DD0FDAE" }, - "response": "{\n \"sha\": \"68ba6e15da31be76cb66c1ad43e6b750a216abe5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5\"\n}\n", + "response": "{\n \"sha\": \"b8e538126ea77acce303bfb527c397363954a770\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b8e538126ea77acce303bfb527c397363954a770\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:35 GMT", + "Date": "Sun, 17 Nov 2019 07:58:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3255,8 +2338,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4949", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3266,64 +2349,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A86:9D21:299C98D:32DBE3D:5D789A2A", - "content-length": "260", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1906:23E1A:218B055:27D190E:5DD0FDAF", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"__typename\":\"Commit\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIzN2FhNjliNzQ1NzQ1ZWY0NjI1NjA0YTdkNTY5OWU0NmJlNDNmOWE=\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 11 Sep 2019 06:54:35 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4948", - "X-RateLimit-Reset": "1568188384", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A84:3ED7B:2104A07:2834628:5D789A2A", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzoyNWYzYjVmNTA2MmUxMjg5NjU5NmU1OGU0ZGM1YzI2YWRkNTZlMThk\",\"sha\":\"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"68ba6e15da31be76cb66c1ad43e6b750a216abe5\"}]}", + "body": "{\"base_tree\":\"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b8e538126ea77acce303bfb527c397363954a770\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:35 GMT", + "Date": "Sun, 17 Nov 2019 07:58:39 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4729", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f32789e625b16ebcc29b45b830767157\"", + "ETag": "\"c74b90acb09081d11900623499e50a21\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4a640c7000c4fc199983d4381f626f8889ec8fe0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3333,31 +2383,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A89:9D21:299CA4E:32DBF3B:5D789A2B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1905:470C7:14A63D3:1858812:5DD0FDAF" }, - "response": "{\n \"sha\": \"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"68ba6e15da31be76cb66c1ad43e6b750a216abe5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"4a640c7000c4fc199983d4381f626f8889ec8fe0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4a640c7000c4fc199983d4381f626f8889ec8fe0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b8e538126ea77acce303bfb527c397363954a770\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b8e538126ea77acce303bfb527c397363954a770\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\"parents\":[\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"4a640c7000c4fc199983d4381f626f8889ec8fe0\",\"parents\":[\"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:36 GMT", + "Date": "Sun, 17 Nov 2019 07:58:40 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4728", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"77f7bb466210dc1df560886fe0e3a1de\"", + "ETag": "\"9368b2650183286a0a0f77b7051c043d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831", + "Location": "https://api.github.com/repos/owner/repo/git/commits/9c7d40739f7acaade3790f7fbac3d1b0031e5e06", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3367,27 +2416,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A8A:15110:2C2B86F:35C7918:5D789A2C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1907:8072:2DAE201:363D070:5DD0FDAF" }, - "response": "{\n \"sha\": \"222118a8de7bcd307c3c76a60fd1653793188831\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjIyMjExOGE4ZGU3YmNkMzA3YzNjNzZhNjBmZDE2NTM3OTMxODg4MzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831\",\n \"html_url\": \"https://github.com/owner/repo/commit/222118a8de7bcd307c3c76a60fd1653793188831\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:36Z\"\n },\n \"tree\": {\n \"sha\": \"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjljN2Q0MDczOWY3YWNhYWRlMzc5MGY3ZmJhYzNkMWIwMDMxZTVlMDY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"html_url\": \"https://github.com/owner/repo/commit/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:40Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:58:40Z\"\n },\n \"tree\": {\n \"sha\": \"4a640c7000c4fc199983d4381f626f8889ec8fe0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4a640c7000c4fc199983d4381f626f8889ec8fe0\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\",\n \"html_url\": \"https://github.com/owner/repo/commit/eca68ad9f01e136de3a1be6a479c7a8cc75d20d1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"222118a8de7bcd307c3c76a60fd1653793188831\",\"force\":false}", + "body": "{\"sha\":\"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:37 GMT", + "Date": "Sun, 17 Nov 2019 07:58:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4727", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f18db0fb079296416e50138b76a10663\"", + "ETag": "W/\"8ddadbe28fc5b09fd31f2c249d30b8e9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3399,28 +2447,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A8C:244E7:1FC2354:26D9312:5D789A2C", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190C:34217:22F1301:2984C6C:5DD0FDB0", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"222118a8de7bcd307c3c76a60fd1653793188831\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\"\n }\n}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"237aa69b745745ef4625604a7d5699e46be43f9a\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/3/merge?ts=900", + "url": "/repos/owner/repo/pulls/7/merge?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:39 GMT", + "Date": "Sun, 17 Nov 2019 07:58:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4726", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d4ffa1395991ca304678dc48e1150e5f\"", + "ETag": "W/\"03465e807dd0d0783b521cba7364e346\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3432,19 +2479,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A8F:3ED82:2C3C69E:35E943E:5D789A2E", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470C9:224B61C:28BE945:5DD0FDB1", + "content-length": "123" }, - "response": "{\n \"sha\": \"e742b30cf7b26e80fdb02d263e4a113db1bf894a\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"320950ac8a53ac820eb33f640e77be77b70febd3\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:40 GMT", + "Date": "Sun, 17 Nov 2019 07:58:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3453,8 +2499,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4947", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3464,9 +2510,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A90:2B24:2AAFDDB:340D813:5D789A30", - "content-length": "81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191A:23E19:13DBEB6:177FAB9:5DD0FDB3", + "content-length": "81" }, "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 @@ -3476,7 +2521,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:41 GMT", + "Date": "Sun, 17 Nov 2019 07:58:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3485,8 +2530,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4946", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3496,28 +2541,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A93:9D1F:122292B:162EAAD:5D789A31", - "content-length": "413", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1926:8072:2DAE7A5:363D743:5DD0FDB4", + "content-length": "413" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"25198bd14651f479ce29f3e0853fc6b40038998d\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/2/merge?ts=900", + "url": "/repos/owner/repo/pulls/6/merge?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:45 GMT", + "Date": "Sun, 17 Nov 2019 07:58:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4725", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f1723970d05ecb092dff7099c948dd43\"", + "ETag": "W/\"06221ae3f95500be1a64e3f88c0ada5d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3529,19 +2573,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A94:2B24:2AB02C2:340DE04:5D789A33", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192A:34217:22F1763:29851BC:5DD0FDB5", + "content-length": "123" }, - "response": "{\n \"sha\": \"dc9ac895de2390c99198914609843a725e626a94\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"789ef773758d4c2afcc287ffea7280ea835d28c2\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:46 GMT", + "Date": "Sun, 17 Nov 2019 07:58:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3550,8 +2593,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4945", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3561,9 +2604,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A96:244EB:2B12EAA:347A3BD:5D789A36", - "content-length": "81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1937:1C98C:23331BC:29A7C03:5DD0FDB7", + "content-length": "81" }, "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 @@ -3573,7 +2615,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:47 GMT", + "Date": "Sun, 17 Nov 2019 07:58:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3582,8 +2624,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4944", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3593,28 +2635,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A98:3ED82:2C3D359:35EA3C5:5D789A37", - "content-length": "417", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193C:2E3F0:2F779AD:3826CCA:5DD0FDB9", + "content-length": "417" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"1057055414a585da15d7093eb623be8d162dd7c7\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/1/merge?ts=900", + "url": "/repos/owner/repo/pulls/5/merge?ts=900", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:49 GMT", + "Date": "Sun, 17 Nov 2019 07:58:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4941", - "X-RateLimit-Reset": "1568188349", + "X-RateLimit-Remaining": "4724", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"20bdfeb814f3f9217c333a62d60934f3\"", + "ETag": "W/\"40d6ead3624f43ecc083a98f4c316873\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3626,19 +2667,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A9A:1510F:2038621:274E3A2:5D789A37", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193D:2E3EE:22C9CD8:294B839:5DD0FDB9", + "content-length": "123" }, - "response": "{\n \"sha\": \"781504e61be8d76a2b826e4e2e1b6e5678949bfa\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"bcf10c31fafb20b0ab709a2180b8d2c6a2ac4e9a\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:50 GMT", + "Date": "Sun, 17 Nov 2019 07:58:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3647,8 +2687,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4943", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4752", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3658,9 +2698,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A9E:2B1F:2083005:27CE982:5D789A39", - "content-length": "81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1949:23E1A:218B9FC:27D24C0:5DD0FDBB", + "content-length": "81" }, "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 @@ -3670,7 +2709,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 11 Sep 2019 06:54:51 GMT", + "Date": "Sun, 17 Nov 2019 07:58:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -3679,8 +2718,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4942", - "X-RateLimit-Reset": "1568188384", + "X-RateLimit-Remaining": "4751", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -3690,11 +2729,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA0:B4DC:1354BD9:17888AF:5D789A3A", - "content-length": "413", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194E:470C9:224BEC9:28BF3C4:5DD0FDBC", + "content-length": "413" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json index 3313cfee..6f618e1c 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:59 GMT", + "Date": "Sun, 17 Nov 2019 07:56:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4749", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E35:33B07:19CBEEC:1F24954:5DCBB8B2", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1863:1C98C:232C13E:299F545:5DD0FD3E", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:59 GMT", + "Date": "Sun, 17 Nov 2019 07:56:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4748", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3E:450D5:3AD8FE6:4672F2F:5DCBB8B3", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186B:23E1B:2E0D37B:3692D99:5DD0FD3F", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:00 GMT", + "Date": "Sun, 17 Nov 2019 07:56:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4747", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3F:450D3:1A70A71:1FB5A59:5DCBB8B3", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1870:2E3EE:22C1A52:2941EBB:5DD0FD40", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:00 GMT", + "Date": "Sun, 17 Nov 2019 07:56:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4746", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,11 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E40:2CFED:90221BA:AB96958:5DCBB8B4", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1871:34218:2ECCBAA:37707F0:5DD0FD40", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -132,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:00 GMT", + "Date": "Sun, 17 Nov 2019 07:56:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -141,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4743", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -152,75 +148,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E47:BBF5:3C2E999:47EBE16:5DCBB8B4", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1879:34217:22EAB6B:297CF54:5DD0FD40", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4745", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E4E:2CFED:90222CA:AB96A96:5DCBB8B4", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4742", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E49:BBEA:9E181D:BE0A47:5DCBB8B4", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -228,7 +159,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:01 GMT", + "Date": "Sun, 17 Nov 2019 07:56:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -237,8 +168,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4744", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -248,11 +179,72 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E4A:450D6:6A184C8:7E5ABA3:5DCBB8B4", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187C:470CB:2C97AA5:34C8B79:5DD0FD40", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:56:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "187A:23E1A:218491F:27C9E22:5DD0FD40", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:56:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1881:23E1B:2E0D516:3692F87:5DD0FD40", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +252,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:01 GMT", + "Date": "Sun, 17 Nov 2019 07:56:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +261,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4741", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,29 +272,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E4C:450E4:8958DE9:A39AC6D:5DCBB8B4", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187D:8070:227DBBA:28F61DF:5DD0FD40", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:04 GMT", + "Date": "Sun, 17 Nov 2019 07:56:52 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "472", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4723", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"92d2254f984520476ad0b49e4f4016b0d5ea7a5d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:08 GMT", + "ETag": "\"d41f7a03ddb312913cbf44fed0f631ae222b3f8c\"", + "Last-Modified": "Sun, 17 Nov 2019 07:55:58 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -314,10 +305,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E56:450E4:89594E6:A39B4A3:5DCBB8B8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1894:1C98C:232C5EB:299FAE9:5DD0FD44" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"e679366a79039987ac9322c31e1a8950c7168f4f\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:05 GMT", + "Date": "Sun, 17 Nov 2019 07:56:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4740", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E5B:33B09:696FB4F:7DDCC5C:5DCBB8B8", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189A:1C98C:232C677:299FB83:5DD0FD44", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -357,7 +346,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:05 GMT", + "Date": "Sun, 17 Nov 2019 07:56:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -366,8 +355,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4739", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -377,11 +366,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E60:3A594:1BAB691:21352ED:5DCBB8B9", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189B:23E1A:2184D72:27CA35C:5DD0FD45", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -389,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:06 GMT", + "Date": "Sun, 17 Nov 2019 07:56:54 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4722", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"96a39350be109945bd814da71ce01750\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -412,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E61:3A594:1BAB6D5:213534C:5DCBB8BA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A0:34217:22EAF9F:297D488:5DD0FD46" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -423,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:07 GMT", + "Date": "Sun, 17 Nov 2019 07:56:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -432,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4738", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -443,289 +430,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E67:33B0A:8A6AFA5:A51C999:5DCBB8BA", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A5:2E3EE:22C20CF:294265C:5DD0FD46", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4736", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6C:3A597:8E0E98A:A8DCFA1:5DCBB8BB", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4737", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6B:3A595:3DE5619:49FF145:5DCBB8BB", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4735", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6E:BBF0:1CDDFB6:226C31C:5DCBB8BB", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4734", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E6D:3A595:3DE5687:49FF1C9:5DCBB8BB", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4733", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E73:2CFEA:668D54A:7A4449A:5DCBB8BC", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4732", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E74:2CFED:9023131:AB97BD5:5DCBB8BC", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:09 GMT", + "Date": "Sun, 17 Nov 2019 07:56:55 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", + "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4721", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"093e5170f43cf69043696741a0244f05\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E76:3A594:1BAB82F:21354E2:5DCBB8BC", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4720", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f79c570d7100dc454ead6b7456d14b67\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7D:BBF8:690C526:7D4B5D8:5DCBB8BD", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:11 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11769", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4719", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c7b5676475bc3b011ae902c4068e0e43\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -738,8 +464,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A597:8E0EEF8:A8DD5E5:5DCBB8BE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A6:2E3F0:2F6EB0E:381C1DA:5DD0FD47" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -749,20 +474,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:11 GMT", + "Date": "Sun, 17 Nov 2019 07:56:56 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", + "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4718", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"04bdb3b59cd7ef13bd416ab7f7744b30\"", + "ETag": "\"be16e8e2a4e5352f2ce5f741c084da07\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8478bc786b8793f875b6d499df0762d3078a6acf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -772,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8A:2CFEA:668D96F:7A44981:5DCBB8BF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AB:34217:22EB16D:297D6D0:5DD0FD48" }, - "response": "{\n \"sha\": \"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjY1YzdhNDlkOGY0YzliODNjNmJmNmMzZTdhNzdhN2M1NGMzYzllYzA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\n \"html_url\": \"https://github.com/owner/repo/commit/65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:11Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:11Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"8478bc786b8793f875b6d499df0762d3078a6acf\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0Ojg0NzhiYzc4NmI4NzkzZjg3NWI2ZDQ5OWRmMDc2MmQzMDc4YTZhY2Y=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8478bc786b8793f875b6d499df0762d3078a6acf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8478bc786b8793f875b6d499df0762d3078a6acf\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:56:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:56:56Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:13 GMT", + "Date": "Sun, 17 Nov 2019 07:56:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -792,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4731", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -803,28 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E8B:33B0A:8A6B87A:A51D3FC:5DCBB8C0", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B0:8072:2DA5409:363283E:5DD0FD48", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjY1YzdhNDlkOGY0YzliODNjNmJmNmMzZTdhNzdhN2M1NGMzYzllYzA=\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjk0ODY2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojg0NzhiYzc4NmI4NzkzZjg3NWI2ZDQ5OWRmMDc2MmQzMDc4YTZhY2Y=\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTM1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:14 GMT", + "Date": "Sun, 17 Nov 2019 07:56:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4717", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dd5dbc8d58e5c5a628023abdfaff82ce\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:33 GMT", + "ETag": "W/\"182b42d0d370d1524d3f743bd62aa02b\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -837,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E95:2CFE8:3E92F67:4B13238:5DCBB8C1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B5:1C993:2CE56DE:354305B:5DD0FD4A", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9004d7bff3af7f14142353bd4f724721f5ca64c7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI2NWM3YTQ5ZDhmNGM5YjgzYzZiZjZjM2U3YTc3YTdjNTRjM2M5ZWMwIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NDc4YmM3ODZiODc5M2Y4NzViNmQ0OTlkZjA3NjJkMzA3OGE2YWNmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:14 GMT", + "Date": "Sun, 17 Nov 2019 07:56:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4716", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"98b45a54d5d3809de474044b94f058e5\"", + "ETag": "\"ffed6e657978b89f9dc2be1b86ab3090\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -872,95 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E98:33B0A:8A6BC51:A51D899:5DCBB8C2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BA:806A:25A5FD:2D9E84:5DD0FD4A" }, - "response": "{\n \"sha\": \"6c1f7dda83c6dec25e74fb586bac12e7441f3038\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038\"\n}\n", + "response": "{\n \"sha\": \"66f2960c175406bb11ccc1c5ec55b82885a2903c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4730", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E9A:33B0A:8A6BD5F:A51D9DD:5DCBB8C3", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjkwMDRkN2JmZjNhZjdmMTQxNDIzNTNiZDRmNzI0NzIxZjVjYTY0Yzc=\",\"sha\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4729", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E99:33B08:3ECB4AB:4AECDFA:5DCBB8C3", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjkwMDRkN2JmZjNhZjdmMTQxNDIzNTNiZDRmNzI0NzIxZjVjYTY0Yzc=\",\"sha\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozMjk4ZGIwMTAyOGQ5Yzg3NDcyMjMxOWIxYzk0N2JmNGIyZGQwMTU2\",\"sha\":\"3298db01028d9c874722319b1c947bf4b2dd0156\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"92d2254f984520476ad0b49e4f4016b0d5ea7a5d\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6c1f7dda83c6dec25e74fb586bac12e7441f3038\"}]}", + "body": "{\"base_tree\":\"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"66f2960c175406bb11ccc1c5ec55b82885a2903c\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:16 GMT", + "Date": "Sun, 17 Nov 2019 07:57:00 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4715", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"74e5dfee0647bb8416eed972e5832b70\"", + "ETag": "\"9371f4681d3ab3f020426adec1f10edf\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -970,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A597:8E0F827:A8DE0FB:5DCBB8C3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C993:2CE58E4:35432C3:5DD0FD4B" }, - "response": "{\n \"sha\": \"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6c1f7dda83c6dec25e74fb586bac12e7441f3038\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"66f2960c175406bb11ccc1c5ec55b82885a2903c\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\"parents\":[\"9004d7bff3af7f14142353bd4f724721f5ca64c7\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\"parents\":[\"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:16 GMT", + "Date": "Sun, 17 Nov 2019 07:57:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4714", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"18c03e8be3025abae3fedf30c8f66080\"", + "ETag": "\"2fa497cd1ad1a99dc8c69c20d111f665\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/03ef7ab645a994efdc0f8d4472d94308a49fc799", + "Location": "https://api.github.com/repos/owner/repo/git/commits/39f0dfa4715184fefffb141ec01be9aeefd245f0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1004,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA5:43EF6:675AAC6:7B62637:5DCBB8C4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C4:470CB:2C98785:34C9B3F:5DD0FD4C" }, - "response": "{\n \"sha\": \"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjAzZWY3YWI2NDVhOTk0ZWZkYzBmOGQ0NDcyZDk0MzA4YTQ5ZmM3OTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"html_url\": \"https://github.com/owner/repo/commit/03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:16Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:16Z\"\n },\n \"tree\": {\n \"sha\": \"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"html_url\": \"https://github.com/owner/repo/commit/9004d7bff3af7f14142353bd4f724721f5ca64c7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjM5ZjBkZmE0NzE1MTg0ZmVmZmZiMTQxZWMwMWJlOWFlZWZkMjQ1ZjA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"html_url\": \"https://github.com/owner/repo/commit/39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:01Z\"\n },\n \"tree\": {\n \"sha\": \"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"html_url\": \"https://github.com/owner/repo/commit/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\"force\":false}", + "body": "{\"sha\":\"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:17 GMT", + "Date": "Sun, 17 Nov 2019 07:57:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4713", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"559364a420476846d4db80c5bc90610d\"", + "ETag": "W/\"711a6ea176c43793298c139171b69623\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1036,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA9:2CFE8:3E9329D:4B135F3:5DCBB8C5", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CA:2E3EE:22C28AF:2942F95:5DD0FD4D", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/03ef7ab645a994efdc0f8d4472d94308a49fc799\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/39f0dfa4715184fefffb141ec01be9aeefd245f0\"\n }\n}\n", "status": 200 }, { @@ -1048,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:18 GMT", + "Date": "Sun, 17 Nov 2019 07:57:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1057,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4728", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4797", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1068,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAD:3A596:65866DC:79433E9:5DCBB8C6", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CF:470C9:2245B9F:28B7C2C:5DD0FD4F", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:19 GMT", + "Date": "Sun, 17 Nov 2019 07:57:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1089,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4727", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4796", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1100,11 +753,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB6:43EF3:3A32B96:45BC677:5DCBB8C7", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D4:34218:2ECE134:3772189:5DD0FD4F", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjY1YzdhNDlkOGY0YzliODNjNmJmNmMzZTdhNzdhN2M1NGMzYzllYzA=\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojg0NzhiYzc4NmI4NzkzZjg3NWI2ZDQ5OWRmMDc2MmQzMDc4YTZhY2Y=\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1112,7 +764,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:19 GMT", + "Date": "Sun, 17 Nov 2019 07:57:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1121,8 +773,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4726", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4795", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1132,11 +784,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB8:3A597:8E0FDE9:A8DE7E7:5DCBB8C7", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D5:23E1B:2E0E95E:36947C3:5DD0FD4F", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAzNTM0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjk0ODY2\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMTM1\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1144,7 +795,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:20 GMT", + "Date": "Sun, 17 Nov 2019 07:57:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1153,8 +804,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4725", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4794", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1164,28 +815,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB9:BBF5:3C2FBB1:47ED366:5DCBB8C7", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D6:34218:2ECE271:3772302:5DD0FD50", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:21 GMT", + "Date": "Sun, 17 Nov 2019 07:57:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4712", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"559364a420476846d4db80c5bc90610d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:33 GMT", + "ETag": "W/\"711a6ea176c43793298c139171b69623\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1198,32 +848,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBD:33B08:3ECB88A:4AED2B1:5DCBB8C8", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DB:470CB:2C98E40:34CA338:5DD0FD51", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/03ef7ab645a994efdc0f8d4472d94308a49fc799\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/39f0dfa4715184fefffb141ec01be9aeefd245f0\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI2NWM3YTQ5ZDhmNGM5YjgzYzZiZjZjM2U3YTc3YTdjNTRjM2M5ZWMwIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NDc4YmM3ODZiODc5M2Y4NzViNmQ0OTlkZjA3NjJkMzA3OGE2YWNmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:21 GMT", + "Date": "Sun, 17 Nov 2019 07:57:06 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4711", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"40f28a3c039f924e22da2c061b81de51\"", + "ETag": "\"b5ffa4e99810de5daf344191184861b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1233,95 +882,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBE:BBFA:87CAEF0:A26D767:5DCBB8C9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E0:8072:2DA629C:3633962:5DD0FD51" }, - "response": "{\n \"sha\": \"58054d1cbb77f71e519538404a0fc70b1d162333\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333\"\n}\n", + "response": "{\n \"sha\": \"b98354ea969bbc54f984aca89f28203f7a304aa8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4724", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EC3:43EF8:89E5325:A43868D:5DCBB8CA", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjAzZWY3YWI2NDVhOTk0ZWZkYzBmOGQ0NDcyZDk0MzA4YTQ5ZmM3OTk=\",\"sha\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo2ODgzZGQ0Y2U1NDcxMTgwNTFhMDEzZTcwY2Q1N2QyZjQ1ZWIxYWY3\",\"sha\":\"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"6c1f7dda83c6dec25e74fb586bac12e7441f3038\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4723", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EC4:3A597:8E10207:A8DECD7:5DCBB8CA", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjAzZWY3YWI2NDVhOTk0ZWZkYzBmOGQ0NDcyZDk0MzA4YTQ5ZmM3OTk=\",\"sha\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"58054d1cbb77f71e519538404a0fc70b1d162333\"}]}", + "body": "{\"base_tree\":\"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b98354ea969bbc54f984aca89f28203f7a304aa8\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:23 GMT", + "Date": "Sun, 17 Nov 2019 07:57:07 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4710", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4797", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"015bcf3682d85308a40e529e2b788424\"", + "ETag": "\"e55fb6e65079871784433fee8e59edaa\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1331,31 +915,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC9:3A596:6586C10:7943A2E:5DCBB8CA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E1:1C993:2CE64BA:3544089:5DD0FD52" }, - "response": "{\n \"sha\": \"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58054d1cbb77f71e519538404a0fc70b1d162333\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b98354ea969bbc54f984aca89f28203f7a304aa8\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\"parents\":[\"03ef7ab645a994efdc0f8d4472d94308a49fc799\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\"parents\":[\"39f0dfa4715184fefffb141ec01be9aeefd245f0\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:23 GMT", + "Date": "Sun, 17 Nov 2019 07:57:07 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4709", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4796", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"91c58811baaabad36eca2e010345b7f9\"", + "ETag": "\"5b3b1714de4a0360928866c1f70ee8ff\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/386d848e51a5e1e56e077b72128cd2df662f62f3", + "Location": "https://api.github.com/repos/owner/repo/git/commits/9dabe18bf0152c5a2a607beddfd95196022b5a3c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1365,27 +948,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECA:33B0A:8A6C9BE:A51E8CD:5DCBB8CB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E6:34217:22EBD1C:297E4D7:5DD0FD53" }, - "response": "{\n \"sha\": \"386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjM4NmQ4NDhlNTFhNWUxZTU2ZTA3N2I3MjEyOGNkMmRmNjYyZjYyZjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"html_url\": \"https://github.com/owner/repo/commit/386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:23Z\"\n },\n \"tree\": {\n \"sha\": \"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/03ef7ab645a994efdc0f8d4472d94308a49fc799\",\n \"html_url\": \"https://github.com/owner/repo/commit/03ef7ab645a994efdc0f8d4472d94308a49fc799\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjlkYWJlMThiZjAxNTJjNWEyYTYwN2JlZGRmZDk1MTk2MDIyYjVhM2M=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"html_url\": \"https://github.com/owner/repo/commit/9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:07Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:07Z\"\n },\n \"tree\": {\n \"sha\": \"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/39f0dfa4715184fefffb141ec01be9aeefd245f0\",\n \"html_url\": \"https://github.com/owner/repo/commit/39f0dfa4715184fefffb141ec01be9aeefd245f0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\",\"force\":false}", + "body": "{\"sha\":\"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:24 GMT", + "Date": "Sun, 17 Nov 2019 07:57:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4708", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4795", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"75db24e7fe8b180c2a9c77b2600caba9\"", + "ETag": "W/\"e20d2482290f38e8a4053a9c969d9787\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1397,60 +979,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECF:3A595:3DE638E:4A00171:5DCBB8CC", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EC:34217:22EBE06:297E5E0:5DD0FD54", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/386d848e51a5e1e56e077b72128cd2df662f62f3\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:25 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4722", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED4:33B0A:8A6CBAE:A51EB27:5DCBB8CC", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjY1YzdhNDlkOGY0YzliODNjNmJmNmMzZTdhNzdhN2M1NGMzYzllYzA=\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9dabe18bf0152c5a2a607beddfd95196022b5a3c\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:26 GMT", + "Date": "Sun, 17 Nov 2019 07:57:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4706", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"75db24e7fe8b180c2a9c77b2600caba9\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:33 GMT", + "ETag": "W/\"e20d2482290f38e8a4053a9c969d9787\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1463,32 +1012,62 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED9:450D3:1A71497:1FB6685:5DCBB8CE", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F4:23E1B:2E0F28F:369529A:5DD0FD56", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/386d848e51a5e1e56e077b72128cd2df662f62f3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9dabe18bf0152c5a2a607beddfd95196022b5a3c\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI2NWM3YTQ5ZDhmNGM5YjgzYzZiZjZjM2U3YTc3YTdjNTRjM2M5ZWMwIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18F5:34216:12FE750:1684848:5DD0FD56", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojg0NzhiYzc4NmI4NzkzZjg3NWI2ZDQ5OWRmMDc2MmQzMDc4YTZhY2Y=\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NDc4YmM3ODZiODc5M2Y4NzViNmQ0OTlkZjA3NjJkMzA3OGE2YWNmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:27 GMT", + "Date": "Sun, 17 Nov 2019 07:57:11 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4704", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"39d0f10e50af06d610028d68d5620ae4\"", + "ETag": "\"b067dc441d2d79cf9b2e8641018fb10a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/0500dcdb059c166e84f4b7649f8530422d5ee531", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5180cfe5624105b21558ee972b73360cc62358ac", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1498,95 +1077,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE2:2CFE8:3E93AB0:4B13F80:5DCBB8CE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:806C:872D69:A0BFB3:5DD0FD56" }, - "response": "{\n \"sha\": \"0500dcdb059c166e84f4b7649f8530422d5ee531\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0500dcdb059c166e84f4b7649f8530422d5ee531\"\n}\n", + "response": "{\n \"sha\": \"5180cfe5624105b21558ee972b73360cc62358ac\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5180cfe5624105b21558ee972b73360cc62358ac\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4721", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE3:43EF3:3A33280:45BCE95:5DCBB8CF", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjM4NmQ4NDhlNTFhNWUxZTU2ZTA3N2I3MjEyOGNkMmRmNjYyZjYyZjM=\",\"sha\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo4YTA1OWNlYjMyYTM1ZDZjMzI0ZDgzMjJmNjRkNTI4YzJkYWFjNDhm\",\"sha\":\"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"58054d1cbb77f71e519538404a0fc70b1d162333\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4720", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE4:BBFA:87CB81B:A26E26F:5DCBB8CF", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjM4NmQ4NDhlNTFhNWUxZTU2ZTA3N2I3MjEyOGNkMmRmNjYyZjYyZjM=\",\"sha\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"386d848e51a5e1e56e077b72128cd2df662f62f3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"0500dcdb059c166e84f4b7649f8530422d5ee531\"}]}", + "body": "{\"base_tree\":\"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5180cfe5624105b21558ee972b73360cc62358ac\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:28 GMT", + "Date": "Sun, 17 Nov 2019 07:57:11 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4702", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9c0414373c95d675cdc9db4d4f83dc4a\"", + "ETag": "\"ec6c9922a3055c140933664e73a22f18\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/bd3dfc25bc713fe809d7591de7ae7101e80254d8", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5be882ad15233fd74e0f1a82e5b4e24820b5c5d9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1596,31 +1110,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEA:43EF6:675B7BC:7B635EA:5DCBB8CF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FF:2E3F0:2F703A1:381DEC6:5DD0FD57" }, - "response": "{\n \"sha\": \"bd3dfc25bc713fe809d7591de7ae7101e80254d8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd3dfc25bc713fe809d7591de7ae7101e80254d8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0500dcdb059c166e84f4b7649f8530422d5ee531\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0500dcdb059c166e84f4b7649f8530422d5ee531\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"5be882ad15233fd74e0f1a82e5b4e24820b5c5d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5be882ad15233fd74e0f1a82e5b4e24820b5c5d9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5180cfe5624105b21558ee972b73360cc62358ac\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5180cfe5624105b21558ee972b73360cc62358ac\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"bd3dfc25bc713fe809d7591de7ae7101e80254d8\",\"parents\":[\"386d848e51a5e1e56e077b72128cd2df662f62f3\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5be882ad15233fd74e0f1a82e5b4e24820b5c5d9\",\"parents\":[\"9dabe18bf0152c5a2a607beddfd95196022b5a3c\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:29 GMT", + "Date": "Sun, 17 Nov 2019 07:57:12 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4700", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3c28016377acf319e8ea7d34fbda1c47\"", + "ETag": "\"e3e63d27091e767351197b0d2be11026\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/351118e3ff2134fe9847446d506d10fb18dd23f5", + "Location": "https://api.github.com/repos/owner/repo/git/commits/819b8c35c5571622e5f6ea1db6428bf242d67faa", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1630,27 +1143,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEF:2CFEA:668ED55:7A4617D:5DCBB8D0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1904:23E1A:21860B8:27CBA2B:5DD0FD58" }, - "response": "{\n \"sha\": \"351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjM1MTExOGUzZmYyMTM0ZmU5ODQ3NDQ2ZDUwNmQxMGZiMThkZDIzZjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"html_url\": \"https://github.com/owner/repo/commit/351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:28Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:28Z\"\n },\n \"tree\": {\n \"sha\": \"bd3dfc25bc713fe809d7591de7ae7101e80254d8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd3dfc25bc713fe809d7591de7ae7101e80254d8\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/386d848e51a5e1e56e077b72128cd2df662f62f3\",\n \"html_url\": \"https://github.com/owner/repo/commit/386d848e51a5e1e56e077b72128cd2df662f62f3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjgxOWI4YzM1YzU1NzE2MjJlNWY2ZWExZGI2NDI4YmYyNDJkNjdmYWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"html_url\": \"https://github.com/owner/repo/commit/819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:12Z\"\n },\n \"tree\": {\n \"sha\": \"5be882ad15233fd74e0f1a82e5b4e24820b5c5d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5be882ad15233fd74e0f1a82e5b4e24820b5c5d9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9dabe18bf0152c5a2a607beddfd95196022b5a3c\",\n \"html_url\": \"https://github.com/owner/repo/commit/9dabe18bf0152c5a2a607beddfd95196022b5a3c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\",\"force\":false}", + "body": "{\"sha\":\"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:30 GMT", + "Date": "Sun, 17 Nov 2019 07:57:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4699", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"361637b54c09a64a82928b06ae2b3c72\"", + "ETag": "W/\"44f15e5d2ccd114a950ddf729b970e08\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1662,28 +1174,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF2:450E4:895BBBA:A39E39C:5DCBB8D1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1909:1C993:2CE6CDC:3544A57:5DD0FD58", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/351118e3ff2134fe9847446d506d10fb18dd23f5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/819b8c35c5571622e5f6ea1db6428bf242d67faa\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:30 GMT", + "Date": "Sun, 17 Nov 2019 07:57:14 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4698", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"361637b54c09a64a82928b06ae2b3c72\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:33 GMT", + "ETag": "W/\"44f15e5d2ccd114a950ddf729b970e08\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1696,32 +1207,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F01:43EF6:675BAB0:7B63972:5DCBB8D2", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34216:12FE9CC:1684B16:5DD0FD59", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/351118e3ff2134fe9847446d506d10fb18dd23f5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/819b8c35c5571622e5f6ea1db6428bf242d67faa\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI2NWM3YTQ5ZDhmNGM5YjgzYzZiZjZjM2U3YTc3YTdjNTRjM2M5ZWMwIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NDc4YmM3ODZiODc5M2Y4NzViNmQ0OTlkZjA3NjJkMzA3OGE2YWNmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:31 GMT", + "Date": "Sun, 17 Nov 2019 07:57:15 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4697", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"40f28a3c039f924e22da2c061b81de51\"", + "ETag": "\"b5ffa4e99810de5daf344191184861b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1731,127 +1241,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F03:450E4:895BE0D:A39E66C:5DCBB8D2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C993:2CE6F0F:3544CEE:5DD0FD5A" }, - "response": "{\n \"sha\": \"58054d1cbb77f71e519538404a0fc70b1d162333\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333\"\n}\n", + "response": "{\n \"sha\": \"b98354ea969bbc54f984aca89f28203f7a304aa8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4719", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F04:2CFE8:3E93E48:4B143CA:5DCBB8D3", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjY1YzdhNDlkOGY0YzliODNjNmJmNmMzZTdhNzdhN2M1NGMzYzllYzA=\",\"sha\":\"65c7a49d8f4c9b83c6bf6c3e7a77a7c54c3c9ec0\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4718", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F08:43EF6:675BC15:7B63B11:5DCBB8D3", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjM1MTExOGUzZmYyMTM0ZmU5ODQ3NDQ2ZDUwNmQxMGZiMThkZDIzZjU=\",\"sha\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4717", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F07:2CFEA:668F0B2:7A46592:5DCBB8D3", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjM1MTExOGUzZmYyMTM0ZmU5ODQ3NDQ2ZDUwNmQxMGZiMThkZDIzZjU=\",\"sha\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDpiZDNkZmMyNWJjNzEzZmU4MDlkNzU5MWRlN2FlNzEwMWU4MDI1NGQ4\",\"sha\":\"bd3dfc25bc713fe809d7591de7ae7101e80254d8\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"0500dcdb059c166e84f4b7649f8530422d5ee531\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"351118e3ff2134fe9847446d506d10fb18dd23f5\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"58054d1cbb77f71e519538404a0fc70b1d162333\"}]}", + "body": "{\"base_tree\":\"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b98354ea969bbc54f984aca89f28203f7a304aa8\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:32 GMT", + "Date": "Sun, 17 Nov 2019 07:57:15 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4696", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"015bcf3682d85308a40e529e2b788424\"", + "ETag": "\"e55fb6e65079871784433fee8e59edaa\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1861,31 +1274,61 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F09:43EF8:89E63E9:A439A76:5DCBB8D4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1919:8070:227F780:28F82A6:5DD0FD5B" }, - "response": "{\n \"sha\": \"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58054d1cbb77f71e519538404a0fc70b1d162333\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58054d1cbb77f71e519538404a0fc70b1d162333\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b98354ea969bbc54f984aca89f28203f7a304aa8\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b98354ea969bbc54f984aca89f28203f7a304aa8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\"parents\":[\"351118e3ff2134fe9847446d506d10fb18dd23f5\"]}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:57:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4792", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1920:8072:2DA71ED:3634B6D:5DD0FD5B", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojg0NzhiYzc4NmI4NzkzZjg3NWI2ZDQ5OWRmMDc2MmQzMDc4YTZhY2Y=\",\"sha\":\"8478bc786b8793f875b6d499df0762d3078a6acf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\"parents\":[\"819b8c35c5571622e5f6ea1db6428bf242d67faa\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:33 GMT", + "Date": "Sun, 17 Nov 2019 07:57:16 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4695", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cba9201a4caea4b15acc78bf8ed26351\"", + "ETag": "\"e725c9e815450f47676e67b20afe6ce0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/301aebd94097aa67339907c8bdc521e68db84cc7", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1f762e2d1921509da3cc8e416c0311a35cd1faed", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1895,27 +1338,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0D:33B09:6972748:7DDFF67:5DCBB8D4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1922:8072:2DA7216:3634B9C:5DD0FD5C" }, - "response": "{\n \"sha\": \"301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjMwMWFlYmQ5NDA5N2FhNjczMzk5MDdjOGJkYzUyMWU2OGRiODRjYzc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"html_url\": \"https://github.com/owner/repo/commit/301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:33Z\"\n },\n \"tree\": {\n \"sha\": \"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a059ceb32a35d6c324d8322f64d528c2daac48f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/351118e3ff2134fe9847446d506d10fb18dd23f5\",\n \"html_url\": \"https://github.com/owner/repo/commit/351118e3ff2134fe9847446d506d10fb18dd23f5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjFmNzYyZTJkMTkyMTUwOWRhM2NjOGU0MTZjMDMxMWEzNWNkMWZhZWQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"html_url\": \"https://github.com/owner/repo/commit/1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:16Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:16Z\"\n },\n \"tree\": {\n \"sha\": \"8a925aef1cc57464d20a583a0a25a94a545f4cdf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8a925aef1cc57464d20a583a0a25a94a545f4cdf\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/819b8c35c5571622e5f6ea1db6428bf242d67faa\",\n \"html_url\": \"https://github.com/owner/repo/commit/819b8c35c5571622e5f6ea1db6428bf242d67faa\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"301aebd94097aa67339907c8bdc521e68db84cc7\",\"force\":false}", + "body": "{\"sha\":\"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:34 GMT", + "Date": "Sun, 17 Nov 2019 07:57:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4694", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c5d1b0afc70cb697b668dd934d2f048\"", + "ETag": "W/\"7e5c174748127443b97944901db9f230\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1927,28 +1369,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F12:2CFED:9025A9A:AB9ADB4:5DCBB8D5", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34218:2ECF3BE:377376E:5DD0FD5C", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/301aebd94097aa67339907c8bdc521e68db84cc7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1f762e2d1921509da3cc8e416c0311a35cd1faed\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:34 GMT", + "Date": "Sun, 17 Nov 2019 07:57:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4693", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c5d1b0afc70cb697b668dd934d2f048\"", - "Last-Modified": "Wed, 13 Nov 2019 08:02:33 GMT", + "ETag": "W/\"7e5c174748127443b97944901db9f230\"", + "Last-Modified": "Sun, 17 Nov 2019 07:56:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1961,32 +1402,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F17:3A595:3DE6AFE:4A00A96:5DCBB8D6", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E1B:2E0FD3A:3695F2A:5DD0FD5D", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/301aebd94097aa67339907c8bdc521e68db84cc7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1f762e2d1921509da3cc8e416c0311a35cd1faed\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI2NWM3YTQ5ZDhmNGM5YjgzYzZiZjZjM2U3YTc3YTdjNTRjM2M5ZWMwIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NDc4YmM3ODZiODc5M2Y4NzViNmQ0OTlkZjA3NjJkMzA3OGE2YWNmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:35 GMT", + "Date": "Sun, 17 Nov 2019 07:57:19 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4692", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"98b45a54d5d3809de474044b94f058e5\"", + "ETag": "\"ffed6e657978b89f9dc2be1b86ab3090\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1996,95 +1436,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F19:3A595:3DE6B5C:4A00B06:5DCBB8D7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1932:34218:2ECF686:3773ACC:5DD0FD5E" }, - "response": "{\n \"sha\": \"6c1f7dda83c6dec25e74fb586bac12e7441f3038\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038\"\n}\n", + "response": "{\n \"sha\": \"66f2960c175406bb11ccc1c5ec55b82885a2903c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"301aebd94097aa67339907c8bdc521e68db84cc7\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4716", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F1D:450E4:895C54B:A39EF42:5DCBB8D7", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjMwMWFlYmQ5NDA5N2FhNjczMzk5MDdjOGJkYzUyMWU2OGRiODRjYzc=\",\"sha\":\"301aebd94097aa67339907c8bdc521e68db84cc7\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo4YTA1OWNlYjMyYTM1ZDZjMzI0ZDgzMjJmNjRkNTI4YzJkYWFjNDhm\",\"sha\":\"8a059ceb32a35d6c324d8322f64d528c2daac48f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"58054d1cbb77f71e519538404a0fc70b1d162333\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"301aebd94097aa67339907c8bdc521e68db84cc7\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:03:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4715", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F1E:2CFED:9025E8A:AB9B273:5DCBB8D7", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjMwMWFlYmQ5NDA5N2FhNjczMzk5MDdjOGJkYzUyMWU2OGRiODRjYzc=\",\"sha\":\"301aebd94097aa67339907c8bdc521e68db84cc7\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"301aebd94097aa67339907c8bdc521e68db84cc7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6c1f7dda83c6dec25e74fb586bac12e7441f3038\"}]}", + "body": "{\"base_tree\":\"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"66f2960c175406bb11ccc1c5ec55b82885a2903c\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:36 GMT", + "Date": "Sun, 17 Nov 2019 07:57:19 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4691", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"74e5dfee0647bb8416eed972e5832b70\"", + "ETag": "\"9371f4681d3ab3f020426adec1f10edf\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2094,31 +1469,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1F:3A596:6587B72:7944CEA:5DCBB8D8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1933:34218:2ECF761:3773BC8:5DD0FD5F" }, - "response": "{\n \"sha\": \"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6c1f7dda83c6dec25e74fb586bac12e7441f3038\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c1f7dda83c6dec25e74fb586bac12e7441f3038\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"66f2960c175406bb11ccc1c5ec55b82885a2903c\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/66f2960c175406bb11ccc1c5ec55b82885a2903c\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\"parents\":[\"301aebd94097aa67339907c8bdc521e68db84cc7\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\"parents\":[\"1f762e2d1921509da3cc8e416c0311a35cd1faed\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:37 GMT", + "Date": "Sun, 17 Nov 2019 07:57:20 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4690", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"aacb9cf138b1873052c9fdb2ac934ff2\"", + "ETag": "\"8fd12d74057db0ed182e91f684da79b4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/38f776894ddd85dc9cd98d05d0b647f241f7b916", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4d6dc9e39e7633f146dd7ca18a393110c8f842b9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2128,27 +1502,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F24:BBFA:87CC688:A26F403:5DCBB8D8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470C9:2246CC3:28B90B3:5DD0FD60" }, - "response": "{\n \"sha\": \"38f776894ddd85dc9cd98d05d0b647f241f7b916\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjM4Zjc3Njg5NGRkZDg1ZGM5Y2Q5OGQwNWQwYjY0N2YyNDFmN2I5MTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38f776894ddd85dc9cd98d05d0b647f241f7b916\",\n \"html_url\": \"https://github.com/owner/repo/commit/38f776894ddd85dc9cd98d05d0b647f241f7b916\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:03:37Z\"\n },\n \"tree\": {\n \"sha\": \"6883dd4ce547118051a013e70cd57d2f45eb1af7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6883dd4ce547118051a013e70cd57d2f45eb1af7\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/301aebd94097aa67339907c8bdc521e68db84cc7\",\n \"html_url\": \"https://github.com/owner/repo/commit/301aebd94097aa67339907c8bdc521e68db84cc7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4d6dc9e39e7633f146dd7ca18a393110c8f842b9\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjRkNmRjOWUzOWU3NjMzZjE0NmRkN2NhMThhMzkzMTEwYzhmODQyYjk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4d6dc9e39e7633f146dd7ca18a393110c8f842b9\",\n \"html_url\": \"https://github.com/owner/repo/commit/4d6dc9e39e7633f146dd7ca18a393110c8f842b9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:57:20Z\"\n },\n \"tree\": {\n \"sha\": \"5b9905f98e8ec862980ee544b34d1a1c84c4c20f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b9905f98e8ec862980ee544b34d1a1c84c4c20f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1f762e2d1921509da3cc8e416c0311a35cd1faed\",\n \"html_url\": \"https://github.com/owner/repo/commit/1f762e2d1921509da3cc8e416c0311a35cd1faed\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"38f776894ddd85dc9cd98d05d0b647f241f7b916\",\"force\":false}", + "body": "{\"sha\":\"4d6dc9e39e7633f146dd7ca18a393110c8f842b9\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:03:38 GMT", + "Date": "Sun, 17 Nov 2019 07:57:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4689", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"23e5891bd43b8d5a72f9e696538a4266\"", + "ETag": "W/\"12daf63c7cf4239bd172cc32c5efd51f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2160,11 +1533,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F29:43EF3:3A33B59:45BD915:5DCBB8DA", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193D:2E3EE:22C3E68:2944913:5DD0FD60", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"38f776894ddd85dc9cd98d05d0b647f241f7b916\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38f776894ddd85dc9cd98d05d0b647f241f7b916\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4d6dc9e39e7633f146dd7ca18a393110c8f842b9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4d6dc9e39e7633f146dd7ca18a393110c8f842b9\"\n }\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json index 9b8e5e27..37aca8c9 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:30 GMT", + "Date": "Sun, 17 Nov 2019 07:53:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4851", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FAB:450E4:8944039:A381831:5DCBB7E1", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1874:470C5:861217:9F55B5:5DD0FC87", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:30 GMT", + "Date": "Sun, 17 Nov 2019 07:53:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4850", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FB0:450D5:3ACF599:46672D2:5DCBB7E2", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1880:1C985:131C5EF:16B6D3C:5DD0FC88", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4849", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FB7:3A596:65754FC:792E758:5DCBB7E3", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1882:470C9:223800E:28A7A5E:5DD0FC89", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4848", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,11 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FB9:2CFEA:667D0A1:7A30885:5DCBB7E3", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1885:1C985:131C657:16B6DBE:5DD0FC89", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -132,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -141,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4846", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -152,75 +148,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBD:33B08:3EC0BB4:4AE009A:5DCBB7E3", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188A:34215:77EBD7:8F9682:5DD0FC89", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4844", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBB:450D5:3ACF66E:46673CE:5DCBB7E3", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4847", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBE:450D6:6A079D9:7E46A1E:5DCBB7E3", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -228,7 +159,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:31 GMT", + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -237,8 +168,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4845", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -248,11 +179,72 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBC:43EF8:89CD481:A41BB84:5DCBB7E3", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1889:1C985:131C6AC:16B6E1E:5DD0FC89", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "188B:34218:2EBE1BD:375EFB6:5DD0FC89", + "content-length": "16478" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1888:1C993:2CD6549:3530F8A:5DD0FC89", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +252,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:32 GMT", + "Date": "Sun, 17 Nov 2019 07:53:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +261,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4843", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,24 +272,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBF:2CFED:900C061:AB7BF51:5DCBB7E3", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188F:2E3ED:1358060:171688D:5DD0FC89", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:35 GMT", + "Date": "Sun, 17 Nov 2019 07:53:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4792", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -309,9 +300,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD4:43EF3:3A2712E:45AE72A:5DCBB7E7", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189C:1C98C:232172D:2992922:5DD0FC8D", + "content-length": "144" }, "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -321,7 +311,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:36 GMT", + "Date": "Sun, 17 Nov 2019 07:53:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -330,8 +320,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4842", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -341,11 +331,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD9:450D6:6A07E44:7E46F78:5DCBB7E7", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A1:34217:22E0615:2970724:5DD0FC8D", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -353,17 +342,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:36 GMT", + "Date": "Sun, 17 Nov 2019 07:53:50 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4791", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"96a39350be109945bd814da71ce01750\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -376,8 +365,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDC:3A596:65759A1:792ECF9:5DCBB7E8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A6:2E3EE:22B60BE:2934281:5DD0FC8E" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -387,7 +375,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:37 GMT", + "Date": "Sun, 17 Nov 2019 07:53:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -396,8 +384,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4841", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -407,289 +395,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE1:33B0A:8A5622E:A50348E:5DCBB7E8", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A7:34218:2EBE7CB:375F6EF:5DD0FC8E", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:37 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4840", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE3:BBFA:87B4A1C:A25271F:5DCBB7E9", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4839", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE2:2CFE8:3E87861:4B05591:5DCBB7E9", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4838", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE8:3A597:8DF87B3:A8C258D:5DCBB7EA", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4837", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE9:33B09:695DC61:7DC7658:5DCBB7EA", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4836", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FEE:450D5:3ACFB04:466796E:5DCBB7EB", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4835", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FEF:450E4:8944ECE:A3829C4:5DCBB7EB", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:40 GMT", + "Date": "Sun, 17 Nov 2019 07:53:52 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", + "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4790", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"093e5170f43cf69043696741a0244f05\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF4:33B0A:8A56691:A503A0C:5DCBB7EC", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4789", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f79c570d7100dc454ead6b7456d14b67\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF9:2CFED:900D02C:AB7D202:5DCBB7ED", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:42 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11769", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4788", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c7b5676475bc3b011ae902c4068e0e43\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -702,8 +429,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFE:3A596:6575F6F:792F42F:5DCBB7ED", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AC:2E3ED:1358287:1716B49:5DD0FC8F" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -713,20 +439,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:43 GMT", + "Date": "Sun, 17 Nov 2019 07:53:52 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", + "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4787", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"45354824ebbe3e437f6cc22bf61f6815\"", + "ETag": "\"ab88bbb98cc75bdca011493d54ebff6f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/b07bd6381b0bfbfd8c430f3e92da30adbdfc628a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/78ec4a8a66e80cd41cea17152345d81238a44659", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -736,18 +462,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E03:BBFA:87B52E1:A25317E:5DCBB7EE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B2:470CB:2C8AB0D:34B910D:5DD0FC90" }, - "response": "{\n \"sha\": \"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OmIwN2JkNjM4MWIwYmZiZmQ4YzQzMGYzZTkyZGEzMGFkYmRmYzYyOGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\n \"html_url\": \"https://github.com/owner/repo/commit/b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:43Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:43Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"78ec4a8a66e80cd41cea17152345d81238a44659\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0Ojc4ZWM0YThhNjZlODBjZDQxY2VhMTcxNTIzNDVkODEyMzhhNDQ2NTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/78ec4a8a66e80cd41cea17152345d81238a44659\",\n \"html_url\": \"https://github.com/owner/repo/commit/78ec4a8a66e80cd41cea17152345d81238a44659\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:53:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:53:52Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:45 GMT", + "Date": "Sun, 17 Nov 2019 07:53:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -756,8 +481,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4834", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -767,24 +492,23 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E04:450E4:8945524:A383180:5DCBB7EF", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B6:34217:22E0924:2970ADE:5DD0FC91", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmIwN2JkNjM4MWIwYmZiZmQ4YzQzMGYzZTkyZGEzMGFkYmRmYzYyOGE=\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkzNjIw\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojc4ZWM0YThhNjZlODBjZDQxY2VhMTcxNTIzNDVkODEyMzhhNDQ2NTk=\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODI5OTg0\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:45 GMT", + "Date": "Sun, 17 Nov 2019 07:53:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4786", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -797,9 +521,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E0D:3A594:1BA65C5:212F029:5DCBB7F1", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C98C:2321B7A:2992E4B:5DD0FC92", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -809,17 +532,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:46 GMT", + "Date": "Sun, 17 Nov 2019 07:53:55 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4785", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"734a848a539098ea8cb76a4490f9b075\"", + "ETag": "\"59fd0ab236d649c3d94798d2498cf6c6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -832,8 +555,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E12:3A595:3DDB04D:49F2906:5DCBB7F1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C0:470CB:2C8AE09:34B94A0:5DD0FC93" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -843,17 +565,17 @@ "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:47 GMT", + "Date": "Sun, 17 Nov 2019 07:53:56 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "561", + "Content-Length": "559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4784", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a73da6bc638b9bfe624bd910dc4879d0\"", + "ETag": "\"13f55b9aa8a6dd7e79e0389c86517f60\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -866,8 +588,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E15:BBF8:68FC7E3:7D38284:5DCBB7F2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C1:2E3EE:22B6641:2934913:5DD0FC94" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -877,20 +598,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:47 GMT", + "Date": "Sun, 17 Nov 2019 07:53:57 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1105", + "Content-Length": "1102", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4783", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"16e23d584e94105fa13a3622f498c1a1\"", + "ETag": "\"7af8aed3b36f6b2296e5ebfd65294d58\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/5655e34817c6e4168d87f1e257f00bcb25dbd09c", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8b672d374f88e527ef95a4ae1e4a640141ec036e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -900,28 +621,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1B:3A594:1BA6647:212F0CD:5DCBB7F3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C7:2E3F0:2F60233:380AAC2:5DD0FC94" }, - "response": "{\n \"sha\": \"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjU2NTVlMzQ4MTdjNmU0MTY4ZDg3ZjFlMjU3ZjAwYmNiMjVkYmQwOWM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:47Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjhiNjcyZDM3NGY4OGU1MjdlZjk1YTRhZTFlNGE2NDAxNDFlYzAzNmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"html_url\": \"https://github.com/owner/repo/commit/8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:53:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:53:57Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"8b672d374f88e527ef95a4ae1e4a640141ec036e\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:48 GMT", + "Date": "Sun, 17 Nov 2019 07:53:58 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "484", + "Content-Length": "482", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4782", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2f1e7266b3779814cd6715a1e4aab77e\"", + "ETag": "\"6030132a82cd34e62cae7a7cc7ab2183\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", @@ -934,31 +654,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1F:3A597:8DF9574:A8C362E:5DCBB7F4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CC:23E1B:2DFF231:368212C:5DD0FC95" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5655e34817c6e4168d87f1e257f00bcb25dbd09c\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b672d374f88e527ef95a4ae1e4a640141ec036e\"\n }\n}\n", "status": 201 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJiMDdiZDYzODFiMGJmYmZkOGM0MzBmM2U5MmRhMzBhZGJkZmM2MjhhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiI3OGVjNGE4YTY2ZTgwY2Q0MWNlYTE3MTUyMzQ1ZDgxMjM4YTQ0NjU5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:49 GMT", + "Date": "Sun, 17 Nov 2019 07:53:58 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4781", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4d8ab3dc004a27416241e79aa4045861\"", + "ETag": "\"370bcefec4a78d54ed9fb45603ea335b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/0f2b022d552ecb8a33642015a1f88b3d4c78a7db", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/967691eede83904cf2f163ddfcb191834ae5c4e6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -968,95 +687,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E24:43EF8:89CEDE1:A41DA5A:5DCBB7F5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D2:1C993:2CD7326:3532042:5DD0FC96" }, - "response": "{\n \"sha\": \"0f2b022d552ecb8a33642015a1f88b3d4c78a7db\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0f2b022d552ecb8a33642015a1f88b3d4c78a7db\"\n}\n", + "response": "{\n \"sha\": \"967691eede83904cf2f163ddfcb191834ae5c4e6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/967691eede83904cf2f163ddfcb191834ae5c4e6\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4833", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E29:2CFE8:3E88179:4B06076:5DCBB7F5", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjU2NTVlMzQ4MTdjNmU0MTY4ZDg3ZjFlMjU3ZjAwYmNiMjVkYmQwOWM=\",\"sha\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4832", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E2A:BBF5:3C24E1A:47E025E:5DCBB7F5", - "content-length": "558", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjU2NTVlMzQ4MTdjNmU0MTY4ZDg3ZjFlMjU3ZjAwYmNiMjVkYmQwOWM=\",\"sha\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"0f2b022d552ecb8a33642015a1f88b3d4c78a7db\"}]}", + "body": "{\"base_tree\":\"8b672d374f88e527ef95a4ae1e4a640141ec036e\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"967691eede83904cf2f163ddfcb191834ae5c4e6\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:50 GMT", + "Date": "Sun, 17 Nov 2019 07:53:59 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4780", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"672addb30bae8bda67298fee67bd0f2c\"", + "ETag": "\"d385076a388c70f9a9f13e718e46a4f0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/c247288cb3559ea7b1a65a9fe45c37f3399e44e2", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7572deffb4930265fd337308c28db7ca4ab4a45a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1066,31 +720,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2E:BBF0:1CD9BE8:2266DCF:5DCBB7F6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D3:470C9:2238D6C:28A8A45:5DD0FC97" }, - "response": "{\n \"sha\": \"c247288cb3559ea7b1a65a9fe45c37f3399e44e2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c247288cb3559ea7b1a65a9fe45c37f3399e44e2\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0f2b022d552ecb8a33642015a1f88b3d4c78a7db\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0f2b022d552ecb8a33642015a1f88b3d4c78a7db\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7572deffb4930265fd337308c28db7ca4ab4a45a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7572deffb4930265fd337308c28db7ca4ab4a45a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"967691eede83904cf2f163ddfcb191834ae5c4e6\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/967691eede83904cf2f163ddfcb191834ae5c4e6\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c247288cb3559ea7b1a65a9fe45c37f3399e44e2\",\"parents\":[\"5655e34817c6e4168d87f1e257f00bcb25dbd09c\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7572deffb4930265fd337308c28db7ca4ab4a45a\",\"parents\":[\"8b672d374f88e527ef95a4ae1e4a640141ec036e\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:51 GMT", + "Date": "Sun, 17 Nov 2019 07:54:00 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4779", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a4cd486c6295047e2cd8b711becc5586\"", + "ETag": "\"0d86e662f133adbe241cdad01bd3294e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/d474388683cdd1febb652af92a956bc40564078f", + "Location": "https://api.github.com/repos/owner/repo/git/commits/14832548eb1221061e6b3ae03d20db1993ce2ad5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1100,27 +753,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E33:2CFEA:667E6E6:7A32349:5DCBB7F7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DA:8072:2D95D98:3620500:5DD0FC97" }, - "response": "{\n \"sha\": \"d474388683cdd1febb652af92a956bc40564078f\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OmQ0NzQzODg2ODNjZGQxZmViYjY1MmFmOTJhOTU2YmM0MDU2NDA3OGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d474388683cdd1febb652af92a956bc40564078f\",\n \"html_url\": \"https://github.com/owner/repo/commit/d474388683cdd1febb652af92a956bc40564078f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T07:59:51Z\"\n },\n \"tree\": {\n \"sha\": \"c247288cb3559ea7b1a65a9fe45c37f3399e44e2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c247288cb3559ea7b1a65a9fe45c37f3399e44e2\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5655e34817c6e4168d87f1e257f00bcb25dbd09c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5655e34817c6e4168d87f1e257f00bcb25dbd09c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjE0ODMyNTQ4ZWIxMjIxMDYxZTZiM2FlMDNkMjBkYjE5OTNjZTJhZDU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"html_url\": \"https://github.com/owner/repo/commit/14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:00Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:00Z\"\n },\n \"tree\": {\n \"sha\": \"7572deffb4930265fd337308c28db7ca4ab4a45a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7572deffb4930265fd337308c28db7ca4ab4a45a\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b672d374f88e527ef95a4ae1e4a640141ec036e\",\n \"html_url\": \"https://github.com/owner/repo/commit/8b672d374f88e527ef95a4ae1e4a640141ec036e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"d474388683cdd1febb652af92a956bc40564078f\",\"force\":false}", + "body": "{\"sha\":\"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:53 GMT", + "Date": "Sun, 17 Nov 2019 07:54:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4778", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"420601f2fc62fdf6fabff736144117d9\"", + "ETag": "W/\"68781aed8e6e379d2a03a0774d7222b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1132,11 +784,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E37:33B0A:8A576E1:A504E02:5DCBB7F8", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DF:23E18:73480D:89FB95:5DD0FC98", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d474388683cdd1febb652af92a956bc40564078f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d474388683cdd1febb652af92a956bc40564078f\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14832548eb1221061e6b3ae03d20db1993ce2ad5\"\n }\n}\n", "status": 200 }, { @@ -1144,7 +795,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:54 GMT", + "Date": "Sun, 17 Nov 2019 07:54:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1153,8 +804,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4831", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1164,19 +815,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E3D:33B07:19C6EFD:1F1E8D7:5DCBB7F9", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E5:470CB:2C8B5EC:34B9E31:5DD0FC99", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:54 GMT", + "Date": "Sun, 17 Nov 2019 07:54:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1185,8 +835,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4830", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1196,19 +846,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E42:BBF5:3C250F6:47E05BA:5DCBB7FA", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E9:34218:2EBF781:37609C8:5DD0FC9A", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmIwN2JkNjM4MWIwYmZiZmQ4YzQzMGYzZTkyZGEzMGFkYmRmYzYyOGE=\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojc4ZWM0YThhNjZlODBjZDQxY2VhMTcxNTIzNDVkODEyMzhhNDQ2NTk=\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:00 GMT", + "Date": "Sun, 17 Nov 2019 07:54:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1217,8 +866,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4829", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1228,19 +877,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E67:33B0A:8A58178:A505AFA:5DCBB800", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190E:2E3EE:22B748B:29359ED:5DD0FCA0", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmIwN2JkNjM4MWIwYmZiZmQ4YzQzMGYzZTkyZGEzMGFkYmRmYzYyOGE=\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojc4ZWM0YThhNjZlODBjZDQxY2VhMTcxNTIzNDVkODEyMzhhNDQ2NTk=\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:06 GMT", + "Date": "Sun, 17 Nov 2019 07:54:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1249,8 +897,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4828", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1260,11 +908,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E7B:3A597:8DFB1DE:A8C58F0:5DCBB805", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34217:22E1DE5:29723CF:5DD0FCA5", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmIwN2JkNjM4MWIwYmZiZmQ4YzQzMGYzZTkyZGEzMGFkYmRmYzYyOGE=\",\"sha\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0Ojc4ZWM0YThhNjZlODBjZDQxY2VhMTcxNTIzNDVkODEyMzhhNDQ2NTk=\",\"sha\":\"78ec4a8a66e80cd41cea17152345d81238a44659\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json index 0d5551b3..713cb2a9 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:43 GMT", + "Date": "Sun, 17 Nov 2019 07:59:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4796", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4750", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B71:B4DE:11E64E0:15C9CDD:5D77AA33", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1848:23E19:13DDE6C:178208E:5DD0FDEE", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:44 GMT", + "Date": "Sun, 17 Nov 2019 07:59:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4795", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4749", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,43 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B72:3ED7B:1257323:164671D:5D77AA34", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1850:23E1B:2E1B39C:36A3923:5DD0FDEF", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4794", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B7E:15110:18709C9:1DB10D6:5D77AA35", - "content-length": "1837", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -100,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:45 GMT", + "Date": "Sun, 17 Nov 2019 07:59:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4793", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,19 +86,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B81:2B1F:121B2CF:1618165:5D77AA35", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1856:1C981:8C17DD:A5D7C2:5DD0FDEF", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Date": "Sun, 17 Nov 2019 07:59:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -141,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4791", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4747", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -152,11 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B88:3ED7B:12575AA:1646A33:5D77AA35", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1857:23E19:13DDF0C:1782158:5DD0FDEF", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -164,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Date": "Sun, 17 Nov 2019 07:59:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -173,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4792", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -184,11 +148,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B85:244EB:17FACFD:1D1FC32:5D77AA35", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185C:470C7:14A87F9:185B2C0:5DD0FDF0", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:59:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "186A:23E19:13DDF60:17821CA:5DD0FDF0", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -196,7 +190,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Date": "Sun, 17 Nov 2019 07:59:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -205,8 +199,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4790", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -216,43 +210,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B86:244E4:AE6FF3:D35C31:5D77AA36", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185D:1C985:1328D7D:16C5A86:5DD0FDF0", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4789", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B98:15110:1870C28:1DB13C8:5D77AA36", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +221,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Date": "Sun, 17 Nov 2019 07:59:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +230,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4788", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,29 +241,59 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B9A:B4DC:AB3654:D03F43:5D77AA36", - "content-length": "7803", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186B:23E1A:218EAE5:27D5F20:5DD0FDF0", + "content-length": "7803" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:59:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4742", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "186C:23E1B:2E1B58C:36A3B85:5DD0FDF0", + "content-length": "16478" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:49 GMT", + "Date": "Sun, 17 Nov 2019 07:59:48 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "472", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4680", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4719", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9626481dfa93edc9edf75fa7d539f38d57ee12aa\"", - "Last-Modified": "Tue, 10 Sep 2019 13:50:02 GMT", + "ETag": "\"b8e538126ea77acce303bfb527c397363954a770\"", + "Last-Modified": "Sun, 17 Nov 2019 07:58:40 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -314,10 +305,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9F:2B19:A8B2FE:CD54D5:5D77AA39", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187A:23E1A:218ED3C:27D61F9:5DD0FDF3" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":\"66c62b901dd07d2090539697cc17216ad6458bb5\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":\"1057055414a585da15d7093eb623be8d162dd7c7\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:50 GMT", + "Date": "Sun, 17 Nov 2019 07:59:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4787", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4741", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA0:244EB:17FB351:1D20442:5D77AA3A", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187F:34217:22F5A99:298A135:5DD0FDF4", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -357,7 +346,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:51 GMT", + "Date": "Sun, 17 Nov 2019 07:59:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -366,8 +355,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4786", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4740", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -377,11 +366,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA2:1510F:1225F47:1605F20:5D77AA3A", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1880:1C98C:2336C25:29AC15B:5DD0FDF4", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -389,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:51 GMT", + "Date": "Sun, 17 Nov 2019 07:59:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4679", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -412,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA5:2B19:A8B486:CD56A5:5D77AA3B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1887:34217:22F5BB3:298A2A0:5DD0FDF5" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -423,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:52 GMT", + "Date": "Sun, 17 Nov 2019 07:59:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -432,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4785", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4739", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -443,292 +430,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA6:B4E0:16A7D91:1B92CBB:5D77AA3C", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188A:34217:22F5C49:298A355:5DD0FDF6", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4783", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BAA:2B19:A8B58A:CD57F8:5D77AA3C", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4784", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BA8:2B19:A8B589:CD57F6:5D77AA3C", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4781", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BAF:1510E:ABBE58:D141E7:5D77AA3D", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4782", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BAC:2B0F:19CEE3:1F9BEA:5D77AA3D", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4780", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BB3:9D21:172D2A3:1C3BD3E:5D77AA3D", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4779", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BB0:1510F:122633D:16063FC:5D77AA3D", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4678", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB4:B4DA:522FEB:644144:5D77AA3E", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4677", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB6:244EB:17FBB0D:1D20DF4:5D77AA3F", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:50:56 GMT", + "Date": "Sun, 17 Nov 2019 07:59:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4676", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -738,31 +464,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB8:244E7:11985FA:1578785:5D77AA40", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:8072:2DB3CA7:3643C35:5DD0FDF6" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:57 GMT", + "Date": "Sun, 17 Nov 2019 07:59:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4675", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6ab65baf011813d25ecf5e711a54735b\"", + "ETag": "\"e65d63d8c4149253c57cf77f025bcfae\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/3253a630f5a262a8d3e74df8bb8021177d36e7ea", + "Location": "https://api.github.com/repos/owner/repo/git/commits/b581e2fb4c123498826fad8d54a9e3c305ecb0e1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -772,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBA:B4DE:11E739E:15CAF71:5D77AA41", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1891:8072:2DB3D84:3643D42:5DD0FDF7" }, - "response": "{\n \"sha\": \"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"html_url\": \"https://github.com/owner/repo/commit/3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:50:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:50:57Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OmI1ODFlMmZiNGMxMjM0OTg4MjZmYWQ4ZDU0YTllM2MzMDVlY2IwZTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\n \"html_url\": \"https://github.com/owner/repo/commit/b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:59:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:59:51Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:50:59 GMT", + "Date": "Sun, 17 Nov 2019 07:59:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -792,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4778", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4738", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -803,28 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BBE:1510E:ABC233:D146B2:5D77AA41", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1895:2E3F0:2F7C564:382C801:5DD0FDF8", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"number\":8,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmI1ODFlMmZiNGMxMjM0OTg4MjZmYWQ4ZDU0YTllM2MzMDVlY2IwZTE=\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMjc2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"number\":8,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:00 GMT", + "Date": "Sun, 17 Nov 2019 07:59:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4674", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f4136b35444e6e6b96133ea80c9acaa4\"", - "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "ETag": "W/\"8ddadbe28fc5b09fd31f2c249d30b8e9\"", + "Last-Modified": "Sun, 17 Nov 2019 07:59:15 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -837,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC4:9D1E:4B1DFF:5BEB2D:5D77AA44", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A3:2E3F0:2F7C746:382CA53:5DD0FDFA", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjgsImhlYWQiOiIzMjUzYTYzMGY1YTI2MmE4ZDNlNzRkZjhiYjgwMjExNzdkMzZlN2VhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjgsImhlYWQiOiJiNTgxZTJmYjRjMTIzNDk4ODI2ZmFkOGQ1NGE5ZTNjMzA1ZWNiMGUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:01 GMT", + "Date": "Sun, 17 Nov 2019 07:59:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4673", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c5f67534d9d82711c52e525f5b4867d9\"", + "ETag": "\"e8fa4f795d01f9454d82a0d316b214ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4cee9854c3c23913f0f8a8fb0fc9e76394e801e3", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -872,95 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC8:2B15:4DDA2C:5E7B15:5D77AA44", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A5:2E3F0:2F7C7CB:382CAE6:5DD0FDFA" }, - "response": "{\n \"sha\": \"d08207b5f6f04533d32911a9a291f71b7f58deae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae\"\n}\n", + "response": "{\n \"sha\": \"4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4777", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BCA:2B24:17B9BC7:1CD72C5:5D77AA45", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU5MzZjN2JmMzE4YThmNGFkMjA5ODBkZGZkNzhiYzU3YzgwNTJlZjY=\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo3OWIyNWNlZThhYWJjMTRhZTUxMDUwNjk4OTJiYTVhNjAxNWI1ODEz\",\"sha\":\"79b25cee8aabc14ae5105069892ba5a6015b5813\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"9626481dfa93edc9edf75fa7d539f38d57ee12aa\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4776", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BCD:B4E0:16A8AE4:1B93D72:5D77AA45", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU5MzZjN2JmMzE4YThmNGFkMjA5ODBkZGZkNzhiYzU3YzgwNTJlZjY=\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d08207b5f6f04533d32911a9a291f71b7f58deae\"}]}", + "body": "{\"base_tree\":\"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:03 GMT", + "Date": "Sun, 17 Nov 2019 07:59:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4672", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c0a43ede7234e9bdb66ef9ee38cda53f\"", + "ETag": "\"69d1109a96e8b8eb4d616cfaa5b6eb14\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/394faabf16ce6fd4f0ad45ba453fd8e5714d5490", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -970,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCE:1510E:ABC666:D14C06:5D77AA46", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A7:34218:2EDB9CA:378243C:5DD0FDFB" }, - "response": "{\n \"sha\": \"deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d08207b5f6f04533d32911a9a291f71b7f58deae\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"394faabf16ce6fd4f0ad45ba453fd8e5714d5490\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/394faabf16ce6fd4f0ad45ba453fd8e5714d5490\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"deed60936691969eb9949de8c0eb5e040d7fbea1\",\"parents\":[\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"394faabf16ce6fd4f0ad45ba453fd8e5714d5490\",\"parents\":[\"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:04 GMT", + "Date": "Sun, 17 Nov 2019 07:59:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4671", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4712", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5dc368d2b76f3c3e259b09527a04dad0\"", + "ETag": "\"bf8d05a60c3642de4a990769e6a5918f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3", + "Location": "https://api.github.com/repos/owner/repo/git/commits/852ced75f4aae289526bf5a5f0be1866471ae0bc", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1004,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD2:244EB:17FC8B5:1D21EF8:5D77AA47", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AC:2E3F0:2F7C934:382CC92:5DD0FDFC" }, - "response": "{\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"html_url\": \"https://github.com/owner/repo/commit/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:04Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:04Z\"\n },\n \"tree\": {\n \"sha\": \"deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"html_url\": \"https://github.com/owner/repo/commit/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0Ojg1MmNlZDc1ZjRhYWUyODk1MjZiZjVhNWYwYmUxODY2NDcxYWUwYmM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"html_url\": \"https://github.com/owner/repo/commit/852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:59:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:59:56Z\"\n },\n \"tree\": {\n \"sha\": \"394faabf16ce6fd4f0ad45ba453fd8e5714d5490\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/394faabf16ce6fd4f0ad45ba453fd8e5714d5490\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\",\n \"html_url\": \"https://github.com/owner/repo/commit/9c7d40739f7acaade3790f7fbac3d1b0031e5e06\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"force\":false}", + "body": "{\"sha\":\"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:05 GMT", + "Date": "Sun, 17 Nov 2019 07:59:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4670", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4711", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1a07ea0b25439cc53d4dcc7f69cbda7e\"", + "ETag": "W/\"e8615bb76c8b539029892a7a1149ffc5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1036,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD6:1510A:22F13:2C52A:5D77AA48", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AD:23E1B:2E1C286:36A4B2C:5DD0FDFC", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/852ced75f4aae289526bf5a5f0be1866471ae0bc\"\n }\n}\n", "status": 200 }, { @@ -1048,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:06 GMT", + "Date": "Sun, 17 Nov 2019 07:59:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1057,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4775", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4737", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1068,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BD7:1510F:1227261:16076FB:5D77AA49", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B2:470C9:224FADB:28C3C41:5DD0FDFE", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:07 GMT", + "Date": "Sun, 17 Nov 2019 07:59:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1089,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4774", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4736", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1100,19 +753,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BD8:244E4:AE80D3:D3714E:5D77AA4A", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BA:806C:875859:A0F1CA:5DD0FDFE", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmI1ODFlMmZiNGMxMjM0OTg4MjZmYWQ4ZDU0YTllM2MzMDVlY2IwZTE=\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMjc2\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:07 GMT", + "Date": "Sun, 17 Nov 2019 08:00:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1121,8 +773,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4773", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4735", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1132,11 +784,72 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7BDA:1510D:46BF62:56C048:5D77AA4A", - "content-length": "595", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C993:2CF3149:35535D9:5DD0FDFE", + "content-length": "595" }, - "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"number\":8,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMjc2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"number\":8,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4734", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18D9:23E1B:2E1CE7C:36A59D7:5DD0FE04", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmI1ODFlMmZiNGMxMjM0OTg4MjZmYWQ4ZDU0YTllM2MzMDVlY2IwZTE=\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4733", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18F0:34217:22F7379:298BFB5:5DD0FE09", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmI1ODFlMmZiNGMxMjM0OTg4MjZmYWQ4ZDU0YTllM2MzMDVlY2IwZTE=\",\"sha\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json index 88699fde..da547b30 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:42 GMT", + "Date": "Sun, 17 Nov 2019 07:55:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4780", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EA2:43EF6:67535EE:7B5994E:5DCBB866", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EC:34216:12FB717:1680ED1:5DD0FCF9", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:43 GMT", + "Date": "Sun, 17 Nov 2019 07:55:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4779", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EA7:3A597:8E05F76:A8D28FD:5DCBB866", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EF:23E18:73610A:8A18E7:5DD0FCF9", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:43 GMT", + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4778", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAB:33B0A:8A629DF:A512826:5DCBB867", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F4:23E1A:2180407:27C4C65:5DD0FCFA", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:43 GMT", + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4777", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,11 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAC:BBF8:6905A6D:7D43454:5DCBB867", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F5:34216:12FB78E:1680F66:5DD0FCFA", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -132,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:44 GMT", + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -141,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4776", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -152,107 +148,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAF:450E4:895143C:A3919FA:5DCBB868", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:8070:22795E8:28F0F16:5DD0FCFB", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4773", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EAD:3A597:8E06191:A8D2B7B:5DCBB868", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4775", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB0:BBFA:87C1738:A261F8B:5DCBB868", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4774", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB1:2CFED:901A02F:AB8CDEC:5DCBB868", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +159,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:44 GMT", + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +168,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4772", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,29 +179,121 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EB6:43EF6:6753844:7B59C19:5DCBB868", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FE:1C993:2CDF3B9:353BA5C:5DD0FCFB", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18FC:34218:2EC7667:376A1A0:5DD0FCFB", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18F9:1C98C:2328066:299A78A:5DD0FCFB", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "18FF:2E3EE:22BD05F:293C7BA:5DD0FCFB", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:48 GMT", + "Date": "Sun, 17 Nov 2019 07:55:43 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", + "Content-Length": "464", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4744", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"821ca9bb2bf5301a88aeea0dd91adede5128ae3b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:01:06 GMT", + "ETag": "\"731d3855020cf2c19cadf2fa11b2302330f1c8f8\"", + "Last-Modified": "Sun, 17 Nov 2019 07:55:02 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -314,10 +305,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC2:2CFEA:66873DC:7A3CF15:5DCBB86B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1910:8072:2D9EDF7:362AFAA:5DD0FCFE" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"second title\",\"description\":\"second description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:48 GMT", + "Date": "Sun, 17 Nov 2019 07:55:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4771", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EC7:2CFED:901A716:AB8D65C:5DCBB86C", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1914:34216:12FB9AE:1681217:5DD0FCFF", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -357,7 +346,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:49 GMT", + "Date": "Sun, 17 Nov 2019 07:55:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -366,8 +355,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4770", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -377,11 +366,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EC8:2CFE8:3E8E912:4B0DDC0:5DCBB86C", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1915:2E3EE:22BD552:293CD98:5DD0FD00", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -389,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:49 GMT", + "Date": "Sun, 17 Nov 2019 07:55:45 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4743", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"96a39350be109945bd814da71ce01750\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -412,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECD:43EF6:6753E44:7B5A37B:5DCBB86D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191A:23E1A:2180A26:27C53AD:5DD0FD00" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -423,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:50 GMT", + "Date": "Sun, 17 Nov 2019 07:55:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -432,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4769", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4820", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -443,289 +430,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED2:450D6:6A12AB2:7E53F7A:5DCBB86E", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191F:2E3EE:22BD6FA:293CF88:5DD0FD01", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4768", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED4:33B09:6968F34:7DD4CF8:5DCBB86E", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4767", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED3:3A597:8E06BC0:A8D381B:5DCBB86E", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4765", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDA:43EF6:675408E:7B5A645:5DCBB86F", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4766", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED9:450D5:3AD5F5F:466F41B:5DCBB86F", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4763", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDD:BBF5:3C2B49A:47E7E2F:5DCBB86F", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4764", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDE:2CFE8:3E8EB97:4B0E0C1:5DCBB86F", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:52 GMT", + "Date": "Sun, 17 Nov 2019 07:55:46 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", + "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4742", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"093e5170f43cf69043696741a0244f05\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE3:43EF6:67541D1:7B5A7D6:5DCBB870", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4741", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f79c570d7100dc454ead6b7456d14b67\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE8:BBF8:690655C:7D441A6:5DCBB871", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11769", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4740", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c7b5676475bc3b011ae902c4068e0e43\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -738,8 +464,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE9:450D6:6A12F70:7E54543:5DCBB871", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1920:8072:2D9F29C:362B547:5DD0FD02" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -749,20 +474,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:55 GMT", + "Date": "Sun, 17 Nov 2019 07:55:47 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", + "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4739", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"720f29123fc3f9cc4ec49bcd196756b8\"", + "ETag": "\"88a000f9e9eb87fb881e0759af449625\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e679366a79039987ac9322c31e1a8950c7168f4f", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1edb16cb18d560214ec2b516df98d2b117b40c6e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -772,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEF:2CFED:901B1BF:AB8E32C:5DCBB872", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34218:2EC8029:376AD4B:5DD0FD03" }, - "response": "{\n \"sha\": \"e679366a79039987ac9322c31e1a8950c7168f4f\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OmU2NzkzNjZhNzkwMzk5ODdhYzkzMjJjMzFlMWE4OTUwYzcxNjhmNGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e679366a79039987ac9322c31e1a8950c7168f4f\",\n \"html_url\": \"https://github.com/owner/repo/commit/e679366a79039987ac9322c31e1a8950c7168f4f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:55Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:55Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjFlZGIxNmNiMThkNTYwMjE0ZWMyYjUxNmRmOThkMmIxMTdiNDBjNmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1edb16cb18d560214ec2b516df98d2b117b40c6e\",\n \"html_url\": \"https://github.com/owner/repo/commit/1edb16cb18d560214ec2b516df98d2b117b40c6e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:47Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:57 GMT", + "Date": "Sun, 17 Nov 2019 07:55:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -792,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4762", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4819", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -803,28 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EF3:450D6:6A1319F:7E547CE:5DCBB873", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E1B:2E086A5:368D1FE:5DD0FD03", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU2NzkzNjZhNzkwMzk5ODdhYzkzMjJjMzFlMWE4OTUwYzcxNjhmNGY=\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjk0Mzg2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFlZGIxNmNiMThkNTYwMjE0ZWMyYjUxNmRmOThkMmIxMTdiNDBjNmU=\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDc2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:57 GMT", + "Date": "Sun, 17 Nov 2019 07:55:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4738", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a9eff1dc9d46ebaf6a405c0fc695791\"", - "Last-Modified": "Wed, 13 Nov 2019 07:58:50 GMT", + "ETag": "W/\"ac038a1aa16880d159cf47ec860b9259\"", + "Last-Modified": "Sun, 17 Nov 2019 07:53:05 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -837,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F05:BBF0:1CDC9E4:226A7C4:5DCBB875", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1935:470CB:2C9339D:34C365F:5DD0FD05", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e782df13fc20a06136e6b4daf3bf87fc129fc15e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5e8f66e710a5c722968d03521cbc0c537f001538\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJlNjc5MzY2YTc5MDM5OTg3YWM5MzIyYzMxZTFhODk1MGM3MTY4ZjRmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxZWRiMTZjYjE4ZDU2MDIxNGVjMmI1MTZkZjk4ZDJiMTE3YjQwYzZlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:58 GMT", + "Date": "Sun, 17 Nov 2019 07:55:50 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4737", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"10e4850f064e12020464910004920b0f\"", + "ETag": "\"aa7b1e4e481ffe069c7f7ec79a4241a4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/bca34ac5e39889b93a7bf5d21af49c4b0163d129", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -872,95 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F08:43EF6:675487A:7B5AFE7:5DCBB876", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1936:806E:1358CCA:1702271:5DD0FD06" }, - "response": "{\n \"sha\": \"bca34ac5e39889b93a7bf5d21af49c4b0163d129\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bca34ac5e39889b93a7bf5d21af49c4b0163d129\"\n}\n", + "response": "{\n \"sha\": \"a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4761", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F12:2CFEA:6688066:7A3DE6D:5DCBB876", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU3ODJkZjEzZmMyMGEwNjEzNmU2YjRkYWYzYmY4N2ZjMTI5ZmMxNWU=\",\"sha\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4760", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F11:450E4:8952AD3:A393547:5DCBB876", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU3ODJkZjEzZmMyMGEwNjEzNmU2YjRkYWYzYmY4N2ZjMTI5ZmMxNWU=\",\"sha\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDpiNTNhNjdmNThjNWY5ZTE5MWU2MDdiYWI1Y2E0Y2M4ZDYzYTgxNzVl\",\"sha\":\"b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"821ca9bb2bf5301a88aeea0dd91adede5128ae3b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"bca34ac5e39889b93a7bf5d21af49c4b0163d129\"}]}", + "body": "{\"base_tree\":\"5e8f66e710a5c722968d03521cbc0c537f001538\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:59 GMT", + "Date": "Sun, 17 Nov 2019 07:55:51 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4736", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f8ddefb4aa3b28a01f81023c1b955b8e\"", + "ETag": "\"3c879ad5e0ec6caab3da12d1e1dacbda\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/1fd416a3c4bfbe3634a7f6d8621e2920892fa27c", + "Location": "https://api.github.com/repos/owner/repo/git/trees/678f70e51e836e3adb26b3ede4c24c3b03a6a853", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -970,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F17:3A595:3DE1F1E:49FAF53:5DCBB877", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193B:2E3EE:22BDCC7:293D666:5DD0FD06" }, - "response": "{\n \"sha\": \"1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bca34ac5e39889b93a7bf5d21af49c4b0163d129\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bca34ac5e39889b93a7bf5d21af49c4b0163d129\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"678f70e51e836e3adb26b3ede4c24c3b03a6a853\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/678f70e51e836e3adb26b3ede4c24c3b03a6a853\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7b4c3b3fe9e4acfb2a99935d3600a4c7bddeac3\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\",\"parents\":[\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"678f70e51e836e3adb26b3ede4c24c3b03a6a853\",\"parents\":[\"5e8f66e710a5c722968d03521cbc0c537f001538\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:00 GMT", + "Date": "Sun, 17 Nov 2019 07:55:52 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4735", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4820", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"629aef23b7021830bf15c19b133b452d\"", + "ETag": "\"5518b81a011f43894e805614df463346\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/79f9ec7279845ae9d5eb72fe21444f5d8928ceff", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1004,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F18:2CFEA:66881DC:7A3E042:5DCBB878", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1940:470CB:2C935FF:34C393F:5DD0FD07" }, - "response": "{\n \"sha\": \"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjBhMDZlNmM4YzNjYjg5ZmIwMjBhNDBkMzU4YTEwZDU3ZjUzMWVhMGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"html_url\": \"https://github.com/owner/repo/commit/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:02:00Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:02:00Z\"\n },\n \"tree\": {\n \"sha\": \"1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"html_url\": \"https://github.com/owner/repo/commit/e782df13fc20a06136e6b4daf3bf87fc129fc15e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0Ojc5ZjllYzcyNzk4NDVhZTlkNWViNzJmZTIxNDQ0ZjVkODkyOGNlZmY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"html_url\": \"https://github.com/owner/repo/commit/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:51Z\"\n },\n \"tree\": {\n \"sha\": \"678f70e51e836e3adb26b3ede4c24c3b03a6a853\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/678f70e51e836e3adb26b3ede4c24c3b03a6a853\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"html_url\": \"https://github.com/owner/repo/commit/5e8f66e710a5c722968d03521cbc0c537f001538\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\"force\":false}", + "body": "{\"sha\":\"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:01 GMT", + "Date": "Sun, 17 Nov 2019 07:55:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4734", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4819", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8e5084ed94252585af9d723b21fef4a4\"", + "ETag": "W/\"2272f92379715e2e7bd3f68799665089\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1036,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1D:450D3:1A6F80F:1FB43CA:5DCBB878", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1941:470C7:14A0B7D:1851ED8:5DD0FD08", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\"\n }\n}\n", "status": 200 }, { @@ -1048,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:02 GMT", + "Date": "Sun, 17 Nov 2019 07:55:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1057,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4759", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1068,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F22:43EF8:89DCDF3:A42E744:5DCBB87A", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194A:1C993:2CE04A6:353CEF7:5DD0FD09", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:03 GMT", + "Date": "Sun, 17 Nov 2019 07:55:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1089,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4758", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1100,11 +753,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2B:3A596:6580B34:793C5C4:5DCBB87B", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194B:470CB:2C93913:34C3CF2:5DD0FD0A", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU2NzkzNjZhNzkwMzk5ODdhYzkzMjJjMzFlMWE4OTUwYzcxNjhmNGY=\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFlZGIxNmNiMThkNTYwMjE0ZWMyYjUxNmRmOThkMmIxMTdiNDBjNmU=\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1112,7 +764,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:03 GMT", + "Date": "Sun, 17 Nov 2019 07:55:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1121,8 +773,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4757", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1132,11 +784,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2C:BBFA:87C3411:A2642C9:5DCBB87B", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194C:470CB:2C93948:34C3D3B:5DD0FD0A", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAzNTM0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjk0Mzg2\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDc2\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1144,7 +795,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:04 GMT", + "Date": "Sun, 17 Nov 2019 07:55:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1153,8 +804,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4756", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1164,28 +815,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2D:3A595:3DE23F0:49FB4FE:5DCBB87B", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1951:470C7:14A0CBF:1852069:5DD0FD0B", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:05 GMT", + "Date": "Sun, 17 Nov 2019 07:55:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4733", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8e5084ed94252585af9d723b21fef4a4\"", - "Last-Modified": "Wed, 13 Nov 2019 07:58:50 GMT", + "ETag": "W/\"2272f92379715e2e7bd3f68799665089\"", + "Last-Modified": "Sun, 17 Nov 2019 07:53:05 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1198,32 +848,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F33:43EF3:3A2E496:45B73C4:5DCBB87D", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1957:34218:2EC8A8C:376BA04:5DD0FD0B", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJlNjc5MzY2YTc5MDM5OTg3YWM5MzIyYzMxZTFhODk1MGM3MTY4ZjRmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxZWRiMTZjYjE4ZDU2MDIxNGVjMmI1MTZkZjk4ZDJiMTE3YjQwYzZlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:06 GMT", + "Date": "Sun, 17 Nov 2019 07:55:57 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4732", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"344d5f02a20bf8b6eb6ba72974dbb370\"", + "ETag": "\"18a78543916d5ec3fb774f39a601dd1b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/92d2254f984520476ad0b49e4f4016b0d5ea7a5d", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/d41f7a03ddb312913cbf44fed0f631ae222b3f8c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1233,95 +882,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F37:3A594:1BA9EE5:213368F:5DCBB87D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1958:806C:8718E6:A0A808:5DD0FD0C" }, - "response": "{\n \"sha\": \"92d2254f984520476ad0b49e4f4016b0d5ea7a5d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92d2254f984520476ad0b49e4f4016b0d5ea7a5d\"\n}\n", + "response": "{\n \"sha\": \"d41f7a03ddb312913cbf44fed0f631ae222b3f8c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d41f7a03ddb312913cbf44fed0f631ae222b3f8c\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:02:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4755", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F3D:3A593:8D3D14:A91F62:5DCBB87E", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjBhMDZlNmM4YzNjYjg5ZmIwMjBhNDBkMzU4YTEwZDU3ZjUzMWVhMGE=\",\"sha\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:02:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4754", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F3C:450D6:6A140F7:7E55A44:5DCBB87E", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjBhMDZlNmM4YzNjYjg5ZmIwMjBhNDBkMzU4YTEwZDU3ZjUzMWVhMGE=\",\"sha\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDoxZmQ0MTZhM2M0YmZiZTM2MzRhN2Y2ZDg2MjFlMjkyMDg5MmZhMjdj\",\"sha\":\"1fd416a3c4bfbe3634a7f6d8621e2920892fa27c\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"bca34ac5e39889b93a7bf5d21af49c4b0163d129\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"92d2254f984520476ad0b49e4f4016b0d5ea7a5d\"}]}", + "body": "{\"base_tree\":\"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d41f7a03ddb312913cbf44fed0f631ae222b3f8c\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:07 GMT", + "Date": "Sun, 17 Nov 2019 07:55:57 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4731", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3a9f1152fd04459bf9921c8f0159e2ed\"", + "ETag": "\"b5c001c415441b6f2c314412e2b4208a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/3298db01028d9c874722319b1c947bf4b2dd0156", + "Location": "https://api.github.com/repos/owner/repo/git/trees/3ff0e4b0ee13883560b45fdd7c21cc90adf48a56", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1331,31 +915,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F42:33B0A:8A650B0:A5156B6:5DCBB87F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195C:470C9:2241601:28B2A6F:5DD0FD0D" }, - "response": "{\n \"sha\": \"3298db01028d9c874722319b1c947bf4b2dd0156\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3298db01028d9c874722319b1c947bf4b2dd0156\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92d2254f984520476ad0b49e4f4016b0d5ea7a5d\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92d2254f984520476ad0b49e4f4016b0d5ea7a5d\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"3ff0e4b0ee13883560b45fdd7c21cc90adf48a56\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3ff0e4b0ee13883560b45fdd7c21cc90adf48a56\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d41f7a03ddb312913cbf44fed0f631ae222b3f8c\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d41f7a03ddb312913cbf44fed0f631ae222b3f8c\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3298db01028d9c874722319b1c947bf4b2dd0156\",\"parents\":[\"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3ff0e4b0ee13883560b45fdd7c21cc90adf48a56\",\"parents\":[\"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:08 GMT", + "Date": "Sun, 17 Nov 2019 07:55:58 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4730", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"71b3a2067e0d5ace0c26abb50ad08031\"", + "ETag": "\"3433bfcd72413e0949e82c815bce5298\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/9004d7bff3af7f14142353bd4f724721f5ca64c7", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4ee9b1366b917c802ad5dd8878c142f141fdb6a2", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1365,59 +948,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F47:33B09:696A991:7DD6C0B:5DCBB880", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1962:2E3EE:22BE49F:293DF75:5DD0FD0E" }, - "response": "{\n \"sha\": \"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjkwMDRkN2JmZjNhZjdmMTQxNDIzNTNiZDRmNzI0NzIxZjVjYTY0Yzc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"html_url\": \"https://github.com/owner/repo/commit/9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:02:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:02:08Z\"\n },\n \"tree\": {\n \"sha\": \"3298db01028d9c874722319b1c947bf4b2dd0156\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3298db01028d9c874722319b1c947bf4b2dd0156\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\",\n \"html_url\": \"https://github.com/owner/repo/commit/0a06e6c8c3cb89fb020a40d358a10d57f531ea0a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjRlZTliMTM2NmI5MTdjODAyYWQ1ZGQ4ODc4YzE0MmYxNDFmZGI2YTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"html_url\": \"https://github.com/owner/repo/commit/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:58Z\"\n },\n \"tree\": {\n \"sha\": \"3ff0e4b0ee13883560b45fdd7c21cc90adf48a56\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3ff0e4b0ee13883560b45fdd7c21cc90adf48a56\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\",\n \"html_url\": \"https://github.com/owner/repo/commit/79f9ec7279845ae9d5eb72fe21444f5d8928ceff\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:02:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4753", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F49:450E4:8953E1C:A394C1F:5DCBB880", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU2NzkzNjZhNzkwMzk5ODdhYzkzMjJjMzFlMWE4OTUwYzcxNjhmNGY=\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\"force\":false}", + "body": "{\"sha\":\"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:09 GMT", + "Date": "Sun, 17 Nov 2019 07:55:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4729", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dd5dbc8d58e5c5a628023abdfaff82ce\"", + "ETag": "W/\"182b42d0d370d1524d3f743bd62aa02b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1429,28 +979,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4B:3A597:8E08A4F:A8D5CEF:5DCBB881", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1966:34218:2EC8E07:376BE41:5DD0FD0E", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9004d7bff3af7f14142353bd4f724721f5ca64c7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9004d7bff3af7f14142353bd4f724721f5ca64c7\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4ee9b1366b917c802ad5dd8878c142f141fdb6a2\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ee9b1366b917c802ad5dd8878c142f141fdb6a2\"\n }\n}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"merge_method\":\"merge\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:56:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "196B:1C981:8BE329:A59991:5DD0FD0F", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFlZGIxNmNiMThkNTYwMjE0ZWMyYjUxNmRmOThkMmIxMTdiNDBjNmU=\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"merge_method\":\"merge\"}", "method": "PUT", "url": "/repos/owner/repo/pulls/3/merge?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:12 GMT", + "Date": "Sun, 17 Nov 2019 07:56:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4728", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6de5e076855814fd5a18b7940c7fc2fc\"", + "ETag": "W/\"ccdd53199ee75b1e056f836e2fade10d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1462,19 +1042,18 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F53:450D3:1A6FC30:1FB48A8:5DCBB882", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196C:2E3EE:22BE731:293E28C:5DD0FD10", + "content-length": "123" }, - "response": "{\n \"sha\": \"21c6aa282f7fd75ba7dd49214e22aba57dee6236\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"e2a9c4e97fef5507c07a22cae59e49bd88ee763b\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { - "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:13 GMT", + "Date": "Sun, 17 Nov 2019 07:56:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1483,8 +1062,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4752", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1494,9 +1073,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F5B:450D6:6A148B5:7E56399:5DCBB884", - "content-length": "81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1975:1C985:1321407:16BCA98:5DD0FD12", + "content-length": "81" }, "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", "status": 200 @@ -1506,7 +1084,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:13 GMT", + "Date": "Sun, 17 Nov 2019 07:56:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1515,8 +1093,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4751", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4812", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1526,19 +1104,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F61:BBFA:87C45C8:A265805:5DCBB885", - "content-length": "413", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197A:23E1B:2E09A75:368E9DD:5DD0FD13", + "content-length": "413" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:02:14 GMT", + "Date": "Sun, 17 Nov 2019 07:56:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1547,8 +1124,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4750", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4811", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1558,11 +1135,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F67:43EF6:6755F09:7B5CAB4:5DCBB886", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1989:23E1B:2E09DFF:368EDFC:5DD0FD15", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmU2NzkzNjZhNzkwMzk5ODdhYzkzMjJjMzFlMWE4OTUwYzcxNjhmNGY=\",\"sha\":\"e679366a79039987ac9322c31e1a8950c7168f4f\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFlZGIxNmNiMThkNTYwMjE0ZWMyYjUxNmRmOThkMmIxMTdiNDBjNmU=\",\"sha\":\"1edb16cb18d560214ec2b516df98d2b117b40c6e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json index bd70d9ed..e2ac3be1 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:29 GMT", + "Date": "Sun, 17 Nov 2019 07:54:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4827", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFE:450D6:6A0C281:7E4C271:5DCBB81C", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198C:8070:2275355:28EBFE2:5DD0FCB9", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:29 GMT", + "Date": "Sun, 17 Nov 2019 07:54:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4826", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F04:2CFEA:6681777:7A35EC6:5DCBB81D", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198F:2E3F0:2F6359A:380E80E:5DD0FCBA", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:30 GMT", + "Date": "Sun, 17 Nov 2019 07:54:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4825", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F08:43EF8:89D3071:A422B60:5DCBB81E", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1996:806E:135679E:16FF587:5DD0FCBB", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:30 GMT", + "Date": "Sun, 17 Nov 2019 07:54:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4824", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,43 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F09:43EF8:89D3085:A422B70:5DCBB81E", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199B:1C98C:23242D6:2995D91:5DD0FCBB", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:30 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4822", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F0D:33B0A:8A5B648:A509B84:5DCBB81E", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -164,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:30 GMT", + "Date": "Sun, 17 Nov 2019 07:54:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -173,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4823", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -184,11 +148,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F0C:450D5:3AD23C9:466AB9A:5DCBB81E", - "content-length": "1973", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199C:34218:2EC21E4:3763C5F:5DD0FCBB", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -196,7 +159,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:30 GMT", + "Date": "Sun, 17 Nov 2019 07:54:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -205,8 +168,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4821", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -216,43 +179,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F0E:33B0A:8A5B651:A509B9D:5DCBB81E", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199E:1C985:131E56E:16B9297:5DD0FCBB", + "content-length": "3102" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4820", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F10:3A597:8DFE0A4:A8C9108:5DCBB81E", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +190,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:31 GMT", + "Date": "Sun, 17 Nov 2019 07:54:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +199,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4819", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,29 +210,90 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F0F:2CFEA:6681907:7A360A1:5DCBB81E", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199F:23E1B:2E02A19:3686302:5DD0FCBB", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:54:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19A4:2E3EE:22B8F7B:2937A38:5DD0FCBB", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:54:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "199D:470CB:2C8DD16:34BCD74:5DD0FCBB", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:34 GMT", + "Date": "Sun, 17 Nov 2019 07:54:39 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "462", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4771", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0f2b022d552ecb8a33642015a1f88b3d4c78a7db\"", - "Last-Modified": "Wed, 13 Nov 2019 07:59:51 GMT", + "ETag": "\"967691eede83904cf2f163ddfcb191834ae5c4e6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:54:00 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -314,10 +305,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F23:33B08:3EC3D07:4AE3D2B:5DCBB822", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B5:34215:77FA44:8FA751:5DD0FCBF" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"b07bd6381b0bfbfd8c430f3e92da30adbdfc628a\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"78ec4a8a66e80cd41cea17152345d81238a44659\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:35 GMT", + "Date": "Sun, 17 Nov 2019 07:54:40 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4818", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F25:3A595:3DDD8C8:49F5B0D:5DCBB822", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BC:1C993:2CDAA42:35361B1:5DD0FCBF", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -357,7 +346,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:35 GMT", + "Date": "Sun, 17 Nov 2019 07:54:40 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -366,8 +355,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4817", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -377,11 +366,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F2A:3A595:3DDD939:49F5B9F:5DCBB823", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BD:8072:2D99B00:3624CB3:5DD0FCC0", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -389,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:36 GMT", + "Date": "Sun, 17 Nov 2019 07:54:41 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4770", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"96a39350be109945bd814da71ce01750\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -412,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F2F:43EF8:89D3972:A423650:5DCBB823", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C4:470C7:149E13C:184ED17:5DD0FCC0" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -423,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:37 GMT", + "Date": "Sun, 17 Nov 2019 07:54:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -432,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4816", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -443,289 +430,28 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F30:2CFE8:3E8AAC6:4B092C8:5DCBB824", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C7:23E1B:2E0315E:3686B89:5DD0FCC1", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:37 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4815", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F35:2CFE8:3E8ABA5:4B093C4:5DCBB825", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5YjE0ZjUzZjlhZTI3ZWYyNmVjMDkyYTU4N2Y5MTE0MTQ4NmNhZDI0\",\"sha\":\"9b14f53f9ae27ef26ec092a587f91141486cad24\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4814", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F36:2CFEA:66820EB:7A36A69:5DCBB825", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4812", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F3B:2CFE8:3E8AC60:4B0949F:5DCBB826", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4813", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F3C:450E4:894AD8A:A389CF2:5DCBB826", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4810", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F42:33B08:3EC407A:4AE4148:5DCBB826", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4811", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F41:2CFEA:66822B3:7A36C8C:5DCBB826", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:39 GMT", + "Date": "Sun, 17 Nov 2019 07:54:42 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", + "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4769", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"093e5170f43cf69043696741a0244f05\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F43:33B09:6962B2B:7DCD5D5:5DCBB827", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:40 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4768", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f79c570d7100dc454ead6b7456d14b67\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F48:2CFED:90133BD:AB84B08:5DCBB828", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11769", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4767", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c7b5676475bc3b011ae902c4068e0e43\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -738,8 +464,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4D:450D6:6A0D070:7E4D37C:5DCBB828", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C8:2E3F0:2F63E1D:380F26D:5DD0FCC2" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -749,20 +474,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:42 GMT", + "Date": "Sun, 17 Nov 2019 07:54:43 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", + "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4766", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"de19e8558e208684d7e8848a1f0e3704\"", + "ETag": "\"d7769833a61ca7d1b83779a6c87f1e1b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/42689b9aa417df146ef57fd92de1d06ace8fa1d1", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2b50b59422574cfe97c5d72a230a6d157d8f2f33", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -772,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4E:43EF8:89D42BC:A42417C:5DCBB829", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:8072:2D99E1B:3625074:5DD0FCC2" }, - "response": "{\n \"sha\": \"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\n \"html_url\": \"https://github.com/owner/repo/commit/42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:00:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:00:41Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\n \"html_url\": \"https://github.com/owner/repo/commit/2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:43Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:43Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:43 GMT", + "Date": "Sun, 17 Nov 2019 07:54:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -792,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4809", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -803,28 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F53:450D6:6A0D251:7E4D5BB:5DCBB82A", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D2:2E3F0:2F63FAD:380F45C:5DD0FCC3", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkzOTU2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDIx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:44 GMT", + "Date": "Sun, 17 Nov 2019 07:54:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4765", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"420601f2fc62fdf6fabff736144117d9\"", - "Last-Modified": "Wed, 13 Nov 2019 07:58:50 GMT", + "ETag": "W/\"68781aed8e6e379d2a03a0774d7222b0\"", + "Last-Modified": "Sun, 17 Nov 2019 07:53:05 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -837,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5E:2CFEA:66828F8:7A37431:5DCBB82C", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DB:1C98C:2324B03:2996780:5DD0FCC5", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d474388683cdd1febb652af92a956bc40564078f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d474388683cdd1febb652af92a956bc40564078f\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14832548eb1221061e6b3ae03d20db1993ce2ad5\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI0MjY4OWI5YWE0MTdkZjE0NmVmNTdmZDkyZGUxZDA2YWNlOGZhMWQxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiIyYjUwYjU5NDIyNTc0Y2ZlOTdjNWQ3MmEyMzBhNmQxNTdkOGYyZjMzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:45 GMT", + "Date": "Sun, 17 Nov 2019 07:54:46 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4764", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0eb47cf39099b32e51cb629ef7fa81ee\"", + "ETag": "\"646311834a61fe012cea8ca08229c47a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/0bdc5621e3098c91c8c9365ae2ee8f5d6019a449", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -872,95 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5F:43EF3:3A2A712:45B2933:5DCBB82C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DE:34218:2EC2DB8:3764ACF:5DD0FCC5" }, - "response": "{\n \"sha\": \"0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\"\n}\n", + "response": "{\n \"sha\": \"41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"d474388683cdd1febb652af92a956bc40564078f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4807", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F65:2CFEA:6682A56:7A375E2:5DCBB82D", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmQ0NzQzODg2ODNjZGQxZmViYjY1MmFmOTJhOTU2YmM0MDU2NDA3OGY=\",\"sha\":\"d474388683cdd1febb652af92a956bc40564078f\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"d474388683cdd1febb652af92a956bc40564078f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4808", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F66:450D5:3AD2EDD:466B8E6:5DCBB82D", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmQ0NzQzODg2ODNjZGQxZmViYjY1MmFmOTJhOTU2YmM0MDU2NDA3OGY=\",\"sha\":\"d474388683cdd1febb652af92a956bc40564078f\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDpjMjQ3Mjg4Y2IzNTU5ZWE3YjFhNjVhOWZlNDVjMzdmMzM5OWU0NGUy\",\"sha\":\"c247288cb3559ea7b1a65a9fe45c37f3399e44e2\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"0f2b022d552ecb8a33642015a1f88b3d4c78a7db\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"d474388683cdd1febb652af92a956bc40564078f\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\"}]}", + "body": "{\"base_tree\":\"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:46 GMT", + "Date": "Sun, 17 Nov 2019 07:54:47 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4763", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cc94d3baba8b99326115f442103b5430\"", + "ETag": "\"a46fe16720727328f7324f6e94616394\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/141a55282152218fcbbb8f90185f37e5a718ebd2", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ede035b6a2c4008353a0978e96c78b11c48ab825", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -970,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6B:33B09:6963386:7DCDFEC:5DCBB82D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E3:2E3F0:2F64303:380F86B:5DD0FCC6" }, - "response": "{\n \"sha\": \"141a55282152218fcbbb8f90185f37e5a718ebd2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/141a55282152218fcbbb8f90185f37e5a718ebd2\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"ede035b6a2c4008353a0978e96c78b11c48ab825\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ede035b6a2c4008353a0978e96c78b11c48ab825\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41de08cc0b62fc6af3ae3ba70062fd797dd0c4e8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"141a55282152218fcbbb8f90185f37e5a718ebd2\",\"parents\":[\"d474388683cdd1febb652af92a956bc40564078f\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ede035b6a2c4008353a0978e96c78b11c48ab825\",\"parents\":[\"14832548eb1221061e6b3ae03d20db1993ce2ad5\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:47 GMT", + "Date": "Sun, 17 Nov 2019 07:54:48 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", + "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4762", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"151d1e39920ae23ee3608d4c869c6c12\"", + "ETag": "\"d7bba405ee535a375251576dc1742744\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c24565766f6466049ae1115d3160b3b7982c7516", + "Location": "https://api.github.com/repos/owner/repo/git/commits/28808fb5984fa9494de5593f9761de1ddaedf0c9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1004,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6C:3A597:8DFFCDB:A8CB2BC:5DCBB82E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E8:1C993:2CDB3A9:3536D07:5DD0FCC7" }, - "response": "{\n \"sha\": \"c24565766f6466049ae1115d3160b3b7982c7516\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OmMyNDU2NTc2NmY2NDY2MDQ5YWUxMTE1ZDMxNjBiM2I3OTgyYzc1MTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c24565766f6466049ae1115d3160b3b7982c7516\",\n \"html_url\": \"https://github.com/owner/repo/commit/c24565766f6466049ae1115d3160b3b7982c7516\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:00:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:00:46Z\"\n },\n \"tree\": {\n \"sha\": \"141a55282152218fcbbb8f90185f37e5a718ebd2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/141a55282152218fcbbb8f90185f37e5a718ebd2\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"d474388683cdd1febb652af92a956bc40564078f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d474388683cdd1febb652af92a956bc40564078f\",\n \"html_url\": \"https://github.com/owner/repo/commit/d474388683cdd1febb652af92a956bc40564078f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjI4ODA4ZmI1OTg0ZmE5NDk0ZGU1NTkzZjk3NjFkZTFkZGFlZGYwYzk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"html_url\": \"https://github.com/owner/repo/commit/28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:47Z\"\n },\n \"tree\": {\n \"sha\": \"ede035b6a2c4008353a0978e96c78b11c48ab825\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ede035b6a2c4008353a0978e96c78b11c48ab825\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14832548eb1221061e6b3ae03d20db1993ce2ad5\",\n \"html_url\": \"https://github.com/owner/repo/commit/14832548eb1221061e6b3ae03d20db1993ce2ad5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"c24565766f6466049ae1115d3160b3b7982c7516\",\"force\":false}", + "body": "{\"sha\":\"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:48 GMT", + "Date": "Sun, 17 Nov 2019 07:54:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4761", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6694853f219bf382501483a1ac77be08\"", + "ETag": "W/\"093413b7277b0ddf1792fb4ebf4422e5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1036,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F71:43EF3:3A2A91E:45B2BA7:5DCBB82F", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E9:470CB:2C8E9C4:34BDD0D:5DD0FCC8", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c24565766f6466049ae1115d3160b3b7982c7516\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c24565766f6466049ae1115d3160b3b7982c7516\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28808fb5984fa9494de5593f9761de1ddaedf0c9\"\n }\n}\n", "status": 200 }, { @@ -1048,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:49 GMT", + "Date": "Sun, 17 Nov 2019 07:54:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1057,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4806", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1068,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F76:450D6:6A0D9A3:7E4DEA3:5DCBB830", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F2:2E3EB:2470B0:2B9E02:5DD0FCC9", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:49 GMT", + "Date": "Sun, 17 Nov 2019 07:54:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1089,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4805", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1100,11 +753,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F7C:450E4:894BEE5:A38B1DC:5DCBB831", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F7:1C993:2CDB6FE:3537110:5DD0FCCA", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1112,7 +764,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:50 GMT", + "Date": "Sun, 17 Nov 2019 07:54:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1121,8 +773,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4804", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1132,11 +784,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F7E:BBFA:87BC177:A25B734:5DCBB831", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F8:470C9:223C57F:28ACC48:5DD0FCCA", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAzNTM0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkzOTU2\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDIx\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1144,7 +795,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:50 GMT", + "Date": "Sun, 17 Nov 2019 07:54:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1153,8 +804,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4803", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1164,11 +815,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F82:BBFA:87BC26A:A25B85B:5DCBB832", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F9:8070:227625E:28ED1F1:5DD0FCCB", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:54:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19FE:23E1A:217D216:27C11AF:5DD0FCCB", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1176,7 +857,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:51 GMT", + "Date": "Sun, 17 Nov 2019 07:54:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1185,8 +866,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4802", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1196,19 +877,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F88:3A597:8E00449:A8CBB8B:5DCBB833", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1800:1C993:2CDB897:35372F8:5DD0FCCB", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:51 GMT", + "Date": "Sun, 17 Nov 2019 07:54:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1217,8 +897,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4801", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1228,19 +908,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F87:3A596:657B162:79358D8:5DCBB833", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1804:8072:2D9AAC7:3625F85:5DD0FCCC", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:55 GMT", + "Date": "Sun, 17 Nov 2019 07:54:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1249,8 +928,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4800", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1260,11 +939,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F9A:450E4:894C6F6:A38BBE6:5DCBB837", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1812:34215:77FDD8:8FAB8C:5DD0FCD0", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1272,17 +950,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:56 GMT", + "Date": "Sun, 17 Nov 2019 07:54:56 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4760", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"eb4d64b12b87713782cf642231a20b8f\"", + "ETag": "\"7044bd681b8f2ce8ee3ad1e8979a376d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1295,352 +973,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9F:450E4:894C86E:A38BDAD:5DCBB838", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1817:2E3EC:79AF70:91DBAA:5DD0FCD0" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4799", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FA1:2CFE8:3E8BBD4:4B0A765:5DCBB838", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4798", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FA0:43EF3:3A2AF96:45B33BB:5DCBB838", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo3YTMyNTU1NjRkNzU4NzU3YTVjYmFlY2E0NTBhMzU4NzRlNmYzZTQ4\",\"sha\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"3929038f9ab6451b2b256dfba5830676e6eecbee\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"ead4329fd042d185630940b8069ab22456523953\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4797", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FA2:3A592:22B101:2AD681:5DCBB838", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4796", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FA8:450E4:894CA4D:A38BFF9:5DCBB839", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4795", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FA7:3A596:657B8FE:793621E:5DCBB839", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:58 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4794", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FAE:43EE3:3184E:4AE50:5DCBB83A", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:00:58 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4793", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FAD:3A594:1BA8326:21314EA:5DCBB83A", - "content-length": "1213", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:00:59 GMT", + "Date": "Sun, 17 Nov 2019 07:54:57 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", + "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4759", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6ead660e45dae1af728de5536c2e7c3e\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAF:BBF8:690222F:7D3F0BE:5DCBB83A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4758", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a3a6f28bbb01effde1df23c9837f6375\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB5:450D3:1A6E3DE:1FB2AD1:5DCBB83B", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4792", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FBA:450D5:3AD3A8F:466C6EC:5DCBB83C", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "11769", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4757", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9fbfa8d7d0723475e9003b8337ef4aee\"", + "ETag": "\"b08c9898bfa27f3378dc7de4175d529e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", @@ -1653,31 +1006,61 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB9:2CFDF:9A0FFD:B9715E:5DCBB83C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1818:8070:22767E5:28ED8A4:5DD0FCD1" }, "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"]}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:54:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "181D:34218:2EC3AE4:3765ACC:5DD0FCD1", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:02 GMT", + "Date": "Sun, 17 Nov 2019 07:54:58 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", + "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4756", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"549fe4791539e84a3c36ec78dc4b85cf\"", + "ETag": "\"15f973288bf46db4e095a9486e3d31c6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/9bc0ec0ce5d743771967eb5b263224a992d6c647", + "Location": "https://api.github.com/repos/owner/repo/git/commits/db30a93130271a5585b8fc6d95251d3355b26f7d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1687,18 +1070,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBF:2CFEA:6683C6B:7A38C08:5DCBB83D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181E:8072:2D9B08B:362668B:5DD0FCD1" }, - "response": "{\n \"sha\": \"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OjliYzBlYzBjZTVkNzQzNzcxOTY3ZWI1YjI2MzIyNGE5OTJkNmM2NDc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9bc0ec0ce5d743771967eb5b263224a992d6c647\",\n \"html_url\": \"https://github.com/owner/repo/commit/9bc0ec0ce5d743771967eb5b263224a992d6c647\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:01Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\n \"html_url\": \"https://github.com/owner/repo/commit/42689b9aa417df146ef57fd92de1d06ace8fa1d1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"db30a93130271a5585b8fc6d95251d3355b26f7d\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/db30a93130271a5585b8fc6d95251d3355b26f7d\",\n \"html_url\": \"https://github.com/owner/repo/commit/db30a93130271a5585b8fc6d95251d3355b26f7d\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:54:58Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\n \"html_url\": \"https://github.com/owner/repo/commit/2b50b59422574cfe97c5d72a230a6d157d8f2f33\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:02 GMT", + "Date": "Sun, 17 Nov 2019 07:54:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1707,8 +1089,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4789", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1718,11 +1100,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC6:BBF8:69026E5:7D3F676:5DCBB83E", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181F:470C9:223CDE2:28AD636:5DD0FCD2", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -1730,7 +1111,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:02 GMT", + "Date": "Sun, 17 Nov 2019 07:54:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1739,8 +1120,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4790", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1750,11 +1131,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC4:3A595:3DDEEFC:49F75C6:5DCBB83E", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1824:8072:2D9B14F:3626775:5DD0FCD2", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { @@ -1762,7 +1142,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:02 GMT", + "Date": "Sun, 17 Nov 2019 07:54:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1771,8 +1151,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4791", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1782,28 +1162,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC5:2CFED:90157EC:AB87736:5DCBB83E", - "content-length": "764", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1825:34218:2EC3BF3:3765C22:5DD0FCD2", + "content-length": "764" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkzOTU2\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzQwMjkzOTU2OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjQyNjg5YjlhYTQxN2RmMTQ2ZWY1N2ZkOTJkZTFkMDZhY2U4ZmExZDE=\",\"sha\":\"42689b9aa417df146ef57fd92de1d06ace8fa1d1\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDIx\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzQxODMwMDIxOjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:03 GMT", + "Date": "Sun, 17 Nov 2019 07:55:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4755", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6694853f219bf382501483a1ac77be08\"", - "Last-Modified": "Wed, 13 Nov 2019 07:58:50 GMT", + "ETag": "W/\"093413b7277b0ddf1792fb4ebf4422e5\"", + "Last-Modified": "Sun, 17 Nov 2019 07:53:05 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1816,32 +1195,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCB:2CFEA:6683ECA:7A38EBF:5DCBB83F", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182A:470CB:2C8F5A0:34BEB6D:5DD0FCD3", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c24565766f6466049ae1115d3160b3b7982c7516\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c24565766f6466049ae1115d3160b3b7982c7516\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28808fb5984fa9494de5593f9761de1ddaedf0c9\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI5YmMwZWMwY2U1ZDc0Mzc3MTk2N2ViNWIyNjMyMjRhOTkyZDZjNjQ3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJkYjMwYTkzMTMwMjcxYTU1ODViOGZjNmQ5NTI1MWQzMzU1YjI2ZjdkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:04 GMT", + "Date": "Sun, 17 Nov 2019 07:55:00 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", + "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4754", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0b79fca6fddce491e55e9a267b212f3f\"", + "ETag": "\"fedd14c6300b82f5465e977ff2e7a87c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/821ca9bb2bf5301a88aeea0dd91adede5128ae3b", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/731d3855020cf2c19cadf2fa11b2302330f1c8f8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1851,95 +1229,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD0:3A596:657C2C3:7936DBB:5DCBB83F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2CDC1F3:3537E73:5DD0FCD4" }, - "response": "{\n \"sha\": \"821ca9bb2bf5301a88aeea0dd91adede5128ae3b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/821ca9bb2bf5301a88aeea0dd91adede5128ae3b\"\n}\n", + "response": "{\n \"sha\": \"731d3855020cf2c19cadf2fa11b2302330f1c8f8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/731d3855020cf2c19cadf2fa11b2302330f1c8f8\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"c24565766f6466049ae1115d3160b3b7982c7516\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4788", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD2:33B08:3EC528E:4AE578C:5DCBB840", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmMyNDU2NTc2NmY2NDY2MDQ5YWUxMTE1ZDMxNjBiM2I3OTgyYzc1MTY=\",\"sha\":\"c24565766f6466049ae1115d3160b3b7982c7516\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"c24565766f6466049ae1115d3160b3b7982c7516\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4787", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FD1:33B09:6964D24:7DCFEB6:5DCBB840", - "content-length": "698", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OmMyNDU2NTc2NmY2NDY2MDQ5YWUxMTE1ZDMxNjBiM2I3OTgyYzc1MTY=\",\"sha\":\"c24565766f6466049ae1115d3160b3b7982c7516\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDoxNDFhNTUyODIxNTIyMThmY2JiYjhmOTAxODVmMzdlNWE3MThlYmQy\",\"sha\":\"141a55282152218fcbbb8f90185f37e5a718ebd2\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"0bdc5621e3098c91c8c9365ae2ee8f5d6019a449\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"c24565766f6466049ae1115d3160b3b7982c7516\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"821ca9bb2bf5301a88aeea0dd91adede5128ae3b\"}]}", + "body": "{\"base_tree\":\"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"731d3855020cf2c19cadf2fa11b2302330f1c8f8\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:05 GMT", + "Date": "Sun, 17 Nov 2019 07:55:01 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "892", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4753", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bd7b504ad7a3be4897fba406da76c6fc\"", + "ETag": "\"5e51cd4b0bf5467e0b64d18004e0d1fa\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/b53a67f58c5f9e191e607bab5ca4cc8d63a8175e", + "Location": "https://api.github.com/repos/owner/repo/git/trees/13ab5559e3cb80b1ff0070ed94b619cbbfd555a9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1949,85 +1262,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD7:33B0A:8A5ECE3:A50DDEC:5DCBB841", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1831:34218:2EC3FC7:376609E:5DD0FCD5" }, - "response": "{\n \"sha\": \"b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"821ca9bb2bf5301a88aeea0dd91adede5128ae3b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/821ca9bb2bf5301a88aeea0dd91adede5128ae3b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"13ab5559e3cb80b1ff0070ed94b619cbbfd555a9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/13ab5559e3cb80b1ff0070ed94b619cbbfd555a9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"731d3855020cf2c19cadf2fa11b2302330f1c8f8\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/731d3855020cf2c19cadf2fa11b2302330f1c8f8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\",\"parents\":[\"c24565766f6466049ae1115d3160b3b7982c7516\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4752", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2b7e55ac09b010387c604a5a35e59acd\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e782df13fc20a06136e6b4daf3bf87fc129fc15e", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD8:3A597:8E0204C:A8CDCF8:5DCBB841", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDAzNTM0OmU3ODJkZjEzZmMyMGEwNjEzNmU2YjRkYWYzYmY4N2ZjMTI5ZmMxNWU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"html_url\": \"https://github.com/owner/repo/commit/e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:06Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:01:06Z\"\n },\n \"tree\": {\n \"sha\": \"b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b53a67f58c5f9e191e607bab5ca4cc8d63a8175e\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c24565766f6466049ae1115d3160b3b7982c7516\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c24565766f6466049ae1115d3160b3b7982c7516\",\n \"html_url\": \"https://github.com/owner/repo/commit/c24565766f6466049ae1115d3160b3b7982c7516\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"sha\":\"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4751", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a9eff1dc9d46ebaf6a405c0fc695791\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDD:33B09:6965028:7DD0243:5DCBB842", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDAzNTM0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e782df13fc20a06136e6b4daf3bf87fc129fc15e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e782df13fc20a06136e6b4daf3bf87fc129fc15e\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\"refId\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:08 GMT", + "Date": "Sun, 17 Nov 2019 07:55:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2036,8 +1281,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4786", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2047,11 +1292,199 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FE2:2CFED:9016228:AB8836B:5DCBB843", - "content-length": "438", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1836:34216:12FA267:167F62E:5DD0FCD5", + "content-length": "276" }, - "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjliYzBlYzBjZTVkNzQzNzcxOTY3ZWI1YjI2MzIyNGE5OTJkNmM2NDc=\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"13ab5559e3cb80b1ff0070ed94b619cbbfd555a9\",\"parents\":[\"28808fb5984fa9494de5593f9761de1ddaedf0c9\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"938d96d10e1a835f5a4d343c5cbf4629\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/5e8f66e710a5c722968d03521cbc0c537f001538", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1837:23E1B:2E04A54:36889B2:5DD0FCD5" + }, + "response": "{\n \"sha\": \"5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjVlOGY2NmU3MTBhNWM3MjI5NjhkMDM1MjFjYmMwYzUzN2YwMDE1Mzg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"html_url\": \"https://github.com/owner/repo/commit/5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T07:55:02Z\"\n },\n \"tree\": {\n \"sha\": \"13ab5559e3cb80b1ff0070ed94b619cbbfd555a9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/13ab5559e3cb80b1ff0070ed94b619cbbfd555a9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28808fb5984fa9494de5593f9761de1ddaedf0c9\",\n \"html_url\": \"https://github.com/owner/repo/commit/28808fb5984fa9494de5593f9761de1ddaedf0c9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"5e8f66e710a5c722968d03521cbc0c537f001538\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ac038a1aa16880d159cf47ec860b9259\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "183C:8072:2D9B764:3626EC6:5DD0FCD6", + "content-length": "482" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5e8f66e710a5c722968d03521cbc0c537f001538\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5e8f66e710a5c722968d03521cbc0c537f001538\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "183D:2E3EE:22BAB38:2939B42:5DD0FCD7", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjJiNTBiNTk0MjI1NzRjZmU5N2M1ZDcyYTIzMGE2ZDE1N2Q4ZjJmMzM=\",\"sha\":\"2b50b59422574cfe97c5d72a230a6d157d8f2f33\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1843:8072:2D9B9DA:36271AB:5DD0FCD7", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"refId\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1842:470C7:149EE63:184FCAC:5DD0FCD7", + "content-length": "438" + }, + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:55:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1848:23E1A:217E09D:27C2300:5DD0FCD9", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { @@ -2059,7 +1492,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:09 GMT", + "Date": "Sun, 17 Nov 2019 07:55:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2068,8 +1501,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4785", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2079,43 +1512,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FEC:450D6:6A0F55E:7E4FFCE:5DCBB845", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1849:2E3EE:22BAE05:2939EB4:5DD0FCD9", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIxNDAzNTM0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQwMjkzOTU2\",\"headRef\":{\"id\":\"MDM6UmVmMjIxNDAzNTM0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 08:01:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4784", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FEB:3A597:8E026A1:A8CE489:5DCBB845", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjliYzBlYzBjZTVkNzQzNzcxOTY3ZWI1YjI2MzIyNGE5OTJkNmM2NDc=\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMDIx\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -2123,7 +1523,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:10 GMT", + "Date": "Sun, 17 Nov 2019 07:55:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2132,8 +1532,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4783", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2143,19 +1543,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FED:2CFE4:198CAAC:1E90093:5DCBB845", - "content-length": "500", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:8070:22772A0:28EE56B:5DD0FCD9", + "content-length": "500" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:15 GMT", + "Date": "Sun, 17 Nov 2019 07:55:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2164,8 +1563,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4782", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2175,19 +1574,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E15:BBF5:3C295CC:47E598C:5DCBB84A", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186B:23E1A:217E6FB:27C2A86:5DD0FCDE", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjliYzBlYzBjZTVkNzQzNzcxOTY3ZWI1YjI2MzIyNGE5OTJkNmM2NDc=\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 08:01:20 GMT", + "Date": "Sun, 17 Nov 2019 07:55:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -2196,8 +1594,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4781", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2207,11 +1605,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2E31:33B0A:8A60637:A50FC9E:5DCBB850", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1882:470C9:223E6D9:28AF3B6:5DD0FCE4", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIxNDAzNTM0OjliYzBlYzBjZTVkNzQzNzcxOTY3ZWI1YjI2MzIyNGE5OTJkNmM2NDc=\",\"sha\":\"9bc0ec0ce5d743771967eb5b263224a992d6c647\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OmRiMzBhOTMxMzAyNzFhNTU4NWI4ZmM2ZDk1MjUxZDMzNTViMjZmN2Q=\",\"sha\":\"db30a93130271a5585b8fc6d95251d3355b26f7d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json index 53a5faf6..1380ace6 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:17 GMT", + "Date": "Sun, 17 Nov 2019 08:00:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4771", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4732", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A55:2B0F:19D302:1FA144:5D77AA55", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1950:470C7:14AA2FE:185D472:5DD0FE1C", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:18 GMT", + "Date": "Sun, 17 Nov 2019 08:00:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4770", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4731", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A56:244DF:1A4BE8:200445:5D77AA56", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1953:2E3ED:1366AEE:1727F3C:5DD0FE1D", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Date": "Sun, 17 Nov 2019 08:00:30 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4769", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4730", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,11 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A59:9D21:172F92C:1C3ED5B:5D77AA56", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1958:8070:228C2A3:29073F3:5DD0FE1D", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -100,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Date": "Sun, 17 Nov 2019 08:00:30 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -109,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4768", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4729", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -120,139 +117,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5A:1510F:12283DC:1608C72:5D77AA56", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1959:2E3ED:1366B64:1727FC0:5DD0FE1D", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4766", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5F:9D1B:24EE6:2DCEC:5D77AA57", - "content-length": "2866", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4767", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A5C:1510D:46C54D:56C7AC:5D77AA57", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4765", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A78:1510F:1228511:1608DE1:5D77AA57", - "content-length": "3102", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4764", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A7A:2B19:A8CF9C:CD77DB:5D77AA58", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -260,7 +128,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:22 GMT", + "Date": "Sun, 17 Nov 2019 08:00:30 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4763", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4728", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,29 +148,152 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A7C:2B1F:121DE11:161B7D6:5D77AA59", - "content-length": "16478", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1962:2E3EE:22D0A72:2953B12:5DD0FE1E", + "content-length": "16478" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4727", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1961:23E1A:2191AC9:27D999B:5DD0FE1E", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4726", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1966:34217:22F88C1:298D9CA:5DD0FE1E", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4725", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "195F:23E18:73A759:8A6B81:5DD0FE1E", + "content-length": "1973" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4724", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "1960:8072:2DB7804:36483B0:5DD0FE1E", + "content-length": "2866" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:23 GMT", + "Date": "Sun, 17 Nov 2019 08:00:34 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "462", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4665", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4706", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d08207b5f6f04533d32911a9a291f71b7f58deae\"", - "Last-Modified": "Tue, 10 Sep 2019 13:51:04 GMT", + "ETag": "\"4cee9854c3c23913f0f8a8fb0fc9e76394e801e3\"", + "Last-Modified": "Sun, 17 Nov 2019 07:59:56 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -314,10 +305,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A7E:9D20:1147BE1:15216AF:5D77AA5B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1973:8072:2DB7C28:364893D:5DD0FE21" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"b581e2fb4c123498826fad8d54a9e3c305ecb0e1\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { @@ -325,7 +315,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:24 GMT", + "Date": "Sun, 17 Nov 2019 08:00:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -334,8 +324,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4762", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4723", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -345,11 +335,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A81:2B24:17BC0A3:1CDA053:5D77AA5B", - "content-length": "189", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1978:1C981:8C2861:A5EC12:5DD0FE22", + "content-length": "189" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -357,7 +346,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:24 GMT", + "Date": "Sun, 17 Nov 2019 08:00:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -366,8 +355,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4761", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4722", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -377,11 +366,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A82:1510E:ABD91D:D1631B:5D77AA5C", - "content-length": "106", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1979:470C5:8691B9:9FE9F4:5DD0FE23", + "content-length": "106" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { @@ -389,17 +377,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:25 GMT", + "Date": "Sun, 17 Nov 2019 08:00:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4664", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "ETag": "\"7887274b45a90ae5e945b06a73f605a3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -412,8 +400,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A84:3ED7B:125A669:164A6F4:5D77AA5D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197E:23E05:1493:6097:5DD0FE23" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -423,7 +410,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:26 GMT", + "Date": "Sun, 17 Nov 2019 08:00:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -432,8 +419,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4760", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -443,292 +430,31 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A86:9D21:1730379:1C3FA2A:5D77AA5D", - "content-length": "429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1997:2E3F0:2F805C4:383163D:5DD0FE24", + "content-length": "429" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\"sha\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4759", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A8A:15110:1875194:1DB68D8:5D77AA5E", - "content-length": "5040", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4758", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A89:9D21:1730465:1C3FB38:5D77AA5E", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4757", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A8C:244E7:119AC6D:157B742:5D77AA5F", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4756", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A8E:3ED82:1872552:1DBD239:5D77AA5F", - "content-length": "502", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4755", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A90:2B0F:19D4AE:1FA344:5D77AA5F", - "content-length": "256", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4754", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A92:3ED77:AB261A:CF7165:5D77AA5F", - "content-length": "1075", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2355", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4663", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A94:2B15:4DE787:5E8B7B:5D77AA60", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:30 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "828", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4662", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A98:3ED82:18728EF:1DBD6B2:5D77AA61", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:30 GMT", + "Date": "Sun, 17 Nov 2019 08:00:37 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11731", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4661", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4704", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "ETag": "\"b13b277b4117a943853d6af97e74f54d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -738,31 +464,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A99:2B19:A8D6EF:CD80DC:5D77AA62", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199B:1C985:132AD4C:16C817A:5DD0FE24" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:31 GMT", + "Date": "Sun, 17 Nov 2019 08:00:38 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1499", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4660", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4703", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ec59f25481f11b97d2fa5d482ddb56c8\"", + "ETag": "\"6afa57e2bbb7f22e816dbfa624c78292\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ce456dd7a5e95408664a7489f65fbbcb566d1be1", + "Location": "https://api.github.com/repos/owner/repo/git/commits/209604c82c1298c22b79fc637c3371d5f85e8561", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -772,18 +497,17 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A9A:15110:1875967:1DB7294:5D77AA63", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199C:34218:2EDFC24:378744E:5DD0FE25" }, - "response": "{\n \"sha\": \"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"html_url\": \"https://github.com/owner/repo/commit/ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:31Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"209604c82c1298c22b79fc637c3371d5f85e8561\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjIwOTYwNGM4MmMxMjk4YzIyYjc5ZmM2MzdjMzM3MWQ1Zjg1ZTg1NjE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/209604c82c1298c22b79fc637c3371d5f85e8561\",\n \"html_url\": \"https://github.com/owner/repo/commit/209604c82c1298c22b79fc637c3371d5f85e8561\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:37Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:33 GMT", + "Date": "Sun, 17 Nov 2019 08:00:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -792,8 +516,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4753", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4720", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -803,28 +527,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A9C:244E4:AE94DF:D38A1C:5D77AA63", - "content-length": "952", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199F:23E19:13E0055:1784A0C:5DD0FE26", + "content-length": "952" }, - "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1NjY1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"number\":9,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIwOTYwNGM4MmMxMjk4YzIyYjc5ZmM2MzdjMzM3MWQ1Zjg1ZTg1NjE=\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMzM2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"number\":9,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:34 GMT", + "Date": "Sun, 17 Nov 2019 08:00:40 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4659", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4702", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1a07ea0b25439cc53d4dcc7f69cbda7e\"", - "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "ETag": "W/\"e8615bb76c8b539029892a7a1149ffc5\"", + "Last-Modified": "Sun, 17 Nov 2019 07:59:15 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -837,32 +560,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A9E:2B15:4DE98B:5E8DEB:5D77AA65", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A1:470C9:2252CD1:28C78CA:5DD0FE27", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/852ced75f4aae289526bf5a5f0be1866471ae0bc\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIyMDk2MDRjODJjMTI5OGMyMmI3OWZjNjM3YzMzNzFkNWY4NWU4NTYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:35 GMT", + "Date": "Sun, 17 Nov 2019 08:00:40 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4658", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4701", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cff466ddbffb0e684eded7aaf882abc5\"", + "ETag": "\"e766cbfc02e32b07759215f6b61b648e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4d00c2091909f91c7144d12a975103214a9b27cb", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -872,95 +594,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AA0:B4DE:11EA08A:15CE77E:5D77AA66", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A5:1C98C:233A4E8:29B0618:5DD0FE28" }, - "response": "{\n \"sha\": \"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"\n}\n", + "response": "{\n \"sha\": \"4d00c2091909f91c7144d12a975103214a9b27cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4d00c2091909f91c7144d12a975103214a9b27cb\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:35 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4752", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA7:B4E0:16AC252:1B981EB:5D77AA67", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpkZWVkNjA5MzY2OTE5NjllYjk5NDlkZThjMGViNWUwNDBkN2ZiZWEx\",\"sha\":\"deed60936691969eb9949de8c0eb5e040d7fbea1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"d08207b5f6f04533d32911a9a291f71b7f58deae\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:35 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4751", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AA8:244E4:AE9716:D38CF1:5D77AA67", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"}]}", + "body": "{\"base_tree\":\"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4d00c2091909f91c7144d12a975103214a9b27cb\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:36 GMT", + "Date": "Sun, 17 Nov 2019 08:00:41 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4657", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4700", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1f93711b29865755698db6a6f9c01cb1\"", + "ETag": "\"f2693d1194605a6963b2e693bc2761d3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc", + "Location": "https://api.github.com/repos/owner/repo/git/trees/fe3956c2df9720266ceac00327d3edce00d992c0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -970,31 +627,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AAE:B4E0:16AC3F3:1B983DB:5D77AA68", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A8:8070:228CE95:290825C:5DD0FE29" }, - "response": "{\n \"sha\": \"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"fe3956c2df9720266ceac00327d3edce00d992c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fe3956c2df9720266ceac00327d3edce00d992c0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4d00c2091909f91c7144d12a975103214a9b27cb\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4d00c2091909f91c7144d12a975103214a9b27cb\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\"parents\":[\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"fe3956c2df9720266ceac00327d3edce00d992c0\",\"parents\":[\"852ced75f4aae289526bf5a5f0be1866471ae0bc\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:37 GMT", + "Date": "Sun, 17 Nov 2019 08:00:42 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4656", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4699", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3fd502f3d3a84f467a6ec026752202dd\"", + "ETag": "\"125d24dff1c13bfdd5bcf9fd28181b5e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740", + "Location": "https://api.github.com/repos/owner/repo/git/commits/16e3f7b9cb9a98f229ba08b502433297e5c5d79c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1004,27 +660,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB0:B4DE:11EA395:15CEB47:5D77AA68", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E19:13E0218:1784C45:5DD0FE29" }, - "response": "{\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"html_url\": \"https://github.com/owner/repo/commit/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:37Z\"\n },\n \"tree\": {\n \"sha\": \"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"html_url\": \"https://github.com/owner/repo/commit/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjE2ZTNmN2I5Y2I5YTk4ZjIyOWJhMDhiNTAyNDMzMjk3ZTVjNWQ3OWM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"html_url\": \"https://github.com/owner/repo/commit/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:42Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:42Z\"\n },\n \"tree\": {\n \"sha\": \"fe3956c2df9720266ceac00327d3edce00d992c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fe3956c2df9720266ceac00327d3edce00d992c0\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/852ced75f4aae289526bf5a5f0be1866471ae0bc\",\n \"html_url\": \"https://github.com/owner/repo/commit/852ced75f4aae289526bf5a5f0be1866471ae0bc\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"force\":false}", + "body": "{\"sha\":\"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:38 GMT", + "Date": "Sun, 17 Nov 2019 08:00:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4655", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4698", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1b371f2f7cb19fafc446eaa555e91618\"", + "ETag": "W/\"cfe583ade038c3712a70e0d063b6deb6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1036,11 +691,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB2:2B1F:121EEEF:161CD1D:5D77AA69", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B3:470CB:2CA9023:34DD9EC:5DD0FE2A", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\"\n }\n}\n", "status": 200 }, { @@ -1048,7 +702,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:40 GMT", + "Date": "Sun, 17 Nov 2019 08:00:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1057,8 +711,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4750", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4719", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1068,19 +722,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB4:2B0F:19D6EE:1FA60C:5D77AA6B", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B7:470C9:22530A3:28C7D61:5DD0FE2B", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:40 GMT", + "Date": "Sun, 17 Nov 2019 08:00:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1089,8 +742,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4749", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1100,28 +753,27 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AB7:9D21:1731990:1C415E0:5D77AA6C", - "content-length": "276", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BC:1C981:8C2B68:A5EF9A:5DD0FE2C", + "content-length": "276" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIwOTYwNGM4MmMxMjk4YzIyYjc5ZmM2MzdjMzM3MWQ1Zjg1ZTg1NjE=\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:41 GMT", + "Date": "Sun, 17 Nov 2019 08:00:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4654", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4697", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1b371f2f7cb19fafc446eaa555e91618\"", - "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "ETag": "W/\"cfe583ade038c3712a70e0d063b6deb6\"", + "Last-Modified": "Sun, 17 Nov 2019 07:59:15 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1134,32 +786,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB8:B4E0:16ACBE3:1B98DD1:5D77AA6D", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19BD:806A:25B441:2DB074:5DD0FE2D", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIyMDk2MDRjODJjMTI5OGMyMmI3OWZjNjM3YzMzNzFkNWY4NWU4NTYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:43 GMT", + "Date": "Sun, 17 Nov 2019 08:00:46 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4653", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4696", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"89043d7fe47e79f9acad4757ca0053af\"", + "ETag": "\"ce565d788bddf76064f59ead98e24211\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/36232dae33ce67b789ef189b20e7a585c2ee5335", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1169,95 +820,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ABA:2B24:17BDE8D:1CDC51D:5D77AA6E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C4:470C9:225327F:28C7F94:5DD0FE2D" }, - "response": "{\n \"sha\": \"4c344e402b3df520c3b1748da3959bd2eb050d65\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65\"\n}\n", + "response": "{\n \"sha\": \"36232dae33ce67b789ef189b20e7a585c2ee5335\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/36232dae33ce67b789ef189b20e7a585c2ee5335\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4748", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABC:B4E0:16ACE5F:1B990DF:5D77AA6F", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo4MjhmNzlmNmYwYTc0ZDYxYjRmNmZkMzkwNGQ5NjkyN2Y3OTU1YmJj\",\"sha\":\"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4747", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ABE:2B1F:121F4AC:161D483:5D77AA6F", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4c344e402b3df520c3b1748da3959bd2eb050d65\"}]}", + "body": "{\"base_tree\":\"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"36232dae33ce67b789ef189b20e7a585c2ee5335\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:44 GMT", + "Date": "Sun, 17 Nov 2019 08:00:47 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4652", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4695", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0d5c66fc68c76c9faaaba94b59075d72\"", + "ETag": "\"147aa870708bc788dcb1da7adaba2cc0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731", + "Location": "https://api.github.com/repos/owner/repo/git/trees/603c5ad4a4eea46e880cb014150a056a583b435e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1267,31 +853,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC1:3ED82:1874107:1DBF477:5D77AA6F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C8:2E3EE:22D1B5F:2954F63:5DD0FE2E" }, - "response": "{\n \"sha\": \"9bb450801547081fde6ec614206e65ef818e1731\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4c344e402b3df520c3b1748da3959bd2eb050d65\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"603c5ad4a4eea46e880cb014150a056a583b435e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/603c5ad4a4eea46e880cb014150a056a583b435e\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"36232dae33ce67b789ef189b20e7a585c2ee5335\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/36232dae33ce67b789ef189b20e7a585c2ee5335\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"9bb450801547081fde6ec614206e65ef818e1731\",\"parents\":[\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"603c5ad4a4eea46e880cb014150a056a583b435e\",\"parents\":[\"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:45 GMT", + "Date": "Sun, 17 Nov 2019 08:00:47 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4651", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4694", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a5b5ccbd5e8b1d95196cfce0694a0e06\"", + "ETag": "\"0365757cf3c06cf8792af294a34571b7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849", + "Location": "https://api.github.com/repos/owner/repo/git/commits/5059551c78be60e3e0ec2d470ba420171654a211", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1301,59 +886,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC4:2B24:17BE269:1CDC9F1:5D77AA70", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:806E:13629B3:170DEF7:5DD0FE2F" }, - "response": "{\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"html_url\": \"https://github.com/owner/repo/commit/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:44Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:44Z\"\n },\n \"tree\": {\n \"sha\": \"9bb450801547081fde6ec614206e65ef818e1731\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"html_url\": \"https://github.com/owner/repo/commit/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"5059551c78be60e3e0ec2d470ba420171654a211\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjUwNTk1NTFjNzhiZTYwZTNlMGVjMmQ0NzBiYTQyMDE3MTY1NGEyMTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5059551c78be60e3e0ec2d470ba420171654a211\",\n \"html_url\": \"https://github.com/owner/repo/commit/5059551c78be60e3e0ec2d470ba420171654a211\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:47Z\"\n },\n \"tree\": {\n \"sha\": \"603c5ad4a4eea46e880cb014150a056a583b435e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/603c5ad4a4eea46e880cb014150a056a583b435e\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\",\n \"html_url\": \"https://github.com/owner/repo/commit/16e3f7b9cb9a98f229ba08b502433297e5c5d79c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4746", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AC9:B4DC:AB675C:D07C59:5D77AA72", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"force\":false}", + "body": "{\"sha\":\"5059551c78be60e3e0ec2d470ba420171654a211\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:46 GMT", + "Date": "Sun, 17 Nov 2019 08:00:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4650", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4693", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d96a8164ee204462a5d8887bd869b100\"", + "ETag": "W/\"ab5fee89db4b05a7268470aa045bba7e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1365,28 +917,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC7:3ED7B:125BDFA:164C4B7:5D77AA71", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CF:23E1B:2E20DE7:36AA6A9:5DD0FE30", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5059551c78be60e3e0ec2d470ba420171654a211\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5059551c78be60e3e0ec2d470ba420171654a211\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:49 GMT", + "Date": "Sun, 17 Nov 2019 08:00:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4649", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4692", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d96a8164ee204462a5d8887bd869b100\"", - "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "ETag": "W/\"ab5fee89db4b05a7268470aa045bba7e\"", + "Last-Modified": "Sun, 17 Nov 2019 07:59:15 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1399,32 +950,62 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACB:244EB:1800DD1:1D27575:5D77AA74", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D8:2E3EE:22D1F30:29553E7:5DD0FE31", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5059551c78be60e3e0ec2d470ba420171654a211\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5059551c78be60e3e0ec2d470ba420171654a211\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19D9:2E3ED:13676CA:1728DA7:5DD0FE32", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIwOTYwNGM4MmMxMjk4YzIyYjc5ZmM2MzdjMzM3MWQ1Zjg1ZTg1NjE=\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIyMDk2MDRjODJjMTI5OGMyMmI3OWZjNjM3YzMzNzFkNWY4NWU4NTYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:49 GMT", + "Date": "Sun, 17 Nov 2019 08:00:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "206", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4648", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4691", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ad308d5f8053cc1ee56785497849ff5f\"", + "ETag": "\"b80bffaa5d21cf60f53acdfd8ccf181e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/c8b3b8dbf000c168e35c2aa122cd8f6a8517390d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1434,95 +1015,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACC:B4DA:524C97:64643D:5D77AA75", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DE:34217:22F9A76:298EF75:5DD0FE32" }, - "response": "{\n \"sha\": \"05ccff604258e4d14de1ca4c4cf776071941b053\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053\"\n}\n", + "response": "{\n \"sha\": \"c8b3b8dbf000c168e35c2aa122cd8f6a8517390d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c8b3b8dbf000c168e35c2aa122cd8f6a8517390d\"\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4745", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ACE:244E4:AEA2AC:D39B70:5D77AA76", - "content-length": "979", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5YmI0NTA4MDE1NDcwODFmZGU2ZWM2MTQyMDZlNjVlZjgxOGUxNzMx\",\"sha\":\"9bb450801547081fde6ec614206e65ef818e1731\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"4c344e402b3df520c3b1748da3959bd2eb050d65\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4744", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD0:9D20:1149D2B:1524017:5D77AA76", - "content-length": "260", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"__typename\":\"Commit\"}}}}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"05ccff604258e4d14de1ca4c4cf776071941b053\"}]}", + "body": "{\"base_tree\":\"5059551c78be60e3e0ec2d470ba420171654a211\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"c8b3b8dbf000c168e35c2aa122cd8f6a8517390d\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:51 GMT", + "Date": "Sun, 17 Nov 2019 08:00:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1559", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4647", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4690", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"236382da1b5efc5176a4356d27de3b4e\"", + "ETag": "\"afc3665019ef5eabe05c77371f42cd89\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5", + "Location": "https://api.github.com/repos/owner/repo/git/trees/2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1532,31 +1048,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD2:244E7:119C796:157D995:5D77AA76", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DF:2E3EE:22D2093:2955592:5DD0FE33" }, - "response": "{\n \"sha\": \"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05ccff604258e4d14de1ca4c4cf776071941b053\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c8b3b8dbf000c168e35c2aa122cd8f6a8517390d\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c8b3b8dbf000c168e35c2aa122cd8f6a8517390d\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8a2223c5c014706f4ca73082bad30a1abf3fe85\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8a2223c5c014706f4ca73082bad30a1abf3fe85\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2650b107fa2f09bb29339e5d3fb2e201154afe5e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2650b107fa2f09bb29339e5d3fb2e201154afe5e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\"parents\":[\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5\",\"parents\":[\"5059551c78be60e3e0ec2d470ba420171654a211\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:51 GMT", + "Date": "Sun, 17 Nov 2019 08:00:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4646", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4689", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"40acc4ea2000e7aca72326baba91795c\"", + "ETag": "\"37c431dedf9968a64a4f14cb57736e00\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052", + "Location": "https://api.github.com/repos/owner/repo/git/commits/326d6553a8650ef74ed522b31a5f7548cb64c475", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1566,59 +1081,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD4:9D21:173299E:1C42A1D:5D77AA77", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E4:470CB:2CA9CE6:34DE957:5DD0FE33" }, - "response": "{\n \"sha\": \"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmY0MDBhNTQ3ODA3ZWMwY2JlNGU3ZTMzMWE3NTAzZmVmNDBjYTEwNTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"html_url\": \"https://github.com/owner/repo/commit/f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:51Z\"\n },\n \"tree\": {\n \"sha\": \"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"html_url\": \"https://github.com/owner/repo/commit/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"326d6553a8650ef74ed522b31a5f7548cb64c475\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE1MDU0OjMyNmQ2NTUzYTg2NTBlZjc0ZWQ1MjJiMzFhNWY3NTQ4Y2I2NGM0NzU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/326d6553a8650ef74ed522b31a5f7548cb64c475\",\n \"html_url\": \"https://github.com/owner/repo/commit/326d6553a8650ef74ed522b31a5f7548cb64c475\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:00:52Z\"\n },\n \"tree\": {\n \"sha\": \"2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/2a5a687a9c9c007e5a0a01cfd30fad509ffb28b5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5059551c78be60e3e0ec2d470ba420171654a211\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5059551c78be60e3e0ec2d470ba420171654a211\",\n \"html_url\": \"https://github.com/owner/repo/commit/5059551c78be60e3e0ec2d470ba420171654a211\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Tue, 10 Sep 2019 13:51:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4743", - "X-RateLimit-Reset": "1568126660", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7AD6:244E4:AEA44D:D39D61:5D77AA78", - "content-length": "276", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\"force\":false}", + "body": "{\"sha\":\"326d6553a8650ef74ed522b31a5f7548cb64c475\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:53 GMT", + "Date": "Sun, 17 Nov 2019 08:00:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4645", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4688", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d4aa22e112e34ba73f0a618cfc0ac427\"", + "ETag": "W/\"86206c28390b8714670a6215adbc4e69\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1630,11 +1112,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD8:B4E0:16ADBC4:1B9A1A7:5D77AA78", - "content-length": "482", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E9:470CB:2CA9DD5:34DEA7A:5DD0FE34", + "content-length": "482" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE1MDU0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"326d6553a8650ef74ed522b31a5f7548cb64c475\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/326d6553a8650ef74ed522b31a5f7548cb64c475\"\n }\n}\n", "status": 200 }, { @@ -1642,7 +1123,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:55 GMT", + "Date": "Sun, 17 Nov 2019 08:00:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1651,8 +1132,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4742", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1662,11 +1143,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ADE:9D21:1732F03:1C430D8:5D77AA7B", - "content-length": "518", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F5:2E3F0:2F81A69:3832FF0:5DD0FE36", + "content-length": "518" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1NjY1\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjIyMjE1MDU0OjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzQxODMwMzM2\",\"headRef\":{\"id\":\"MDM6UmVmMjIyMjE1MDU0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", "status": 200 }, { @@ -1674,7 +1154,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Tue, 10 Sep 2019 13:51:56 GMT", + "Date": "Sun, 17 Nov 2019 08:00:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -1683,8 +1163,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4741", - "X-RateLimit-Reset": "1568126660", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1694,11 +1174,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7ADF:3ED82:18754A9:1DC0C93:5D77AA7B", - "content-length": "496", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F6:23E18:73AEA4:8A742A:5DD0FE37", + "content-length": "496" }, - "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 08:00:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19FB:1C98C:233B486:29B18B8:5DD0FE37", + "content-length": "276" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjIyMjE1MDU0OjIwOTYwNGM4MmMxMjk4YzIyYjc5ZmM2MzdjMzM3MWQ1Zjg1ZTg1NjE=\",\"sha\":\"209604c82c1298c22b79fc637c3371d5f85e8561\",\"__typename\":\"Commit\",\"status\":null}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json index 29bbff78..6850ce06 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json @@ -4,7 +4,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:58:58 GMT", + "Date": "Sun, 17 Nov 2019 07:53:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -13,8 +13,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4860", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -24,9 +24,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED2:450E4:8940A50:A37D86E:5DCBB7C1", - "content-length": "179", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C4:470CB:2C881F7:34B5F25:5DD0FC69", + "content-length": "179" }, "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", "status": 200 @@ -36,7 +35,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:58:58 GMT", + "Date": "Sun, 17 Nov 2019 07:53:14 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -45,8 +44,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4859", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -56,11 +55,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2ED3:3A597:8DF4800:A8BD8B8:5DCBB7C2", - "content-length": "119", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C6:23E19:13D10C6:1772AD4:5DD0FC69", + "content-length": "119" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", "status": 200 }, { @@ -68,7 +66,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:58:59 GMT", + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -77,8 +75,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4858", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -88,43 +86,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EDA:43EF6:674647B:7B49E7D:5DCBB7C3", - "content-length": "1218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CB:470C9:2235FCE:28A5443:5DD0FC6A", + "content-length": "1218" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:58:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4856", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE7:450D5:3ACE13C:4665A3D:5DCBB7C3", - "content-length": "1973", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { @@ -132,7 +97,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:58:59 GMT", + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -141,8 +106,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4857", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -152,19 +117,18 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EE4:BBFA:87B0B02:A24DBF6:5DCBB7C3", - "content-length": "1837", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D4:2E3F0:2F5CF99:3806DA0:5DD0FC6A", + "content-length": "1837" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMTQwMzUzNDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIyMjIxNTA1NDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", "status": 200 }, { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:00 GMT", + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -173,8 +137,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4855", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -184,75 +148,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFC:450D5:3ACE150:4665A56:5DCBB7C3", - "content-length": "3102", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470CB:2C883D5:34B6160:5DD0FC6B", + "content-length": "1973" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4854", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFD:33B08:3EBF2F7:4ADE321:5DCBB7C3", - "content-length": "16478", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", - "status": 200 - }, - { - "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", - "method": "POST", - "url": "/graphql", - "headers": { - "Date": "Wed, 13 Nov 2019 07:59:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "Cache-Control": "no-cache", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v4; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4853", - "X-RateLimit-Reset": "1573635144", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F01:43EF8:89CA275:A417FC8:5DCBB7C3", - "content-length": "7803", - "connection": "keep-alive" - }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 }, { @@ -260,7 +159,7 @@ "method": "POST", "url": "/graphql", "headers": { - "Date": "Wed, 13 Nov 2019 07:59:00 GMT", + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", @@ -269,8 +168,8 @@ "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v4; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4852", - "X-RateLimit-Reset": "1573635144", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1573980078", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -280,11 +179,103 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EFF:3A596:6573070:792BBA1:5DCBB7C3", - "content-length": "2866", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EC:1C993:2CD4296:352E53A:5DD0FC6B", + "content-length": "2866" }, - "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjE0MDM1MzQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMTQwMzUzNDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19ED:23E1B:2DFC0E2:367E5C7:5DD0FC6B", + "content-length": "3102" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:53:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19EE:23E1A:2176E23:27B9B81:5DD0FC6B", + "content-length": "7803" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Sun, 17 Nov 2019 07:53:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1573980078", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "19F2:2E3EB:2469BB:2B960D:5DD0FC6B", + "content-length": "16478" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTUwNTQ=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIyMjIxNTA1NDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json index e640c43d..e2c8875d 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:59 GMT", + "Date": "Sun, 17 Nov 2019 08:11:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4868", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F44:450D5:3AF3944:46933BB:5DCBBB0B", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1829:8072:2DF078A:368C4B3:5DD100B8", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:59 GMT", + "Date": "Sun, 17 Nov 2019 08:11:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4867", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,9 +53,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4D:450E4:8992256:A3E0503:5DCBBB0B", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182D:23E19:13F6EDB:17A012E:5DD100B9", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 @@ -65,17 +63,17 @@ "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:00 GMT", + "Date": "Sun, 17 Nov 2019 08:11:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4866", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"907c0dc2b104bfe644d1a987a2ca8717\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"62b0bd502144148198377c97e56b1db4\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -87,25 +85,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4E:43EF6:6785EA7:7B96C41:5DCBBB0C", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182E:34217:2322831:29C0095:5DD100B9", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:11:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:09:58Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "POST", "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:01 GMT", + "Date": "Sun, 17 Nov 2019 08:11:38 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22055", "Server": "GitHub.com", "Status": "202 Accepted", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4865", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -117,27 +114,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F53:450E4:8992456:A3E0780:5DCBBB0C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182F:2E3EE:22FEC78:298A54A:5DD100BA" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:11:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:09:58Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 202 }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:02 GMT", + "Date": "Sun, 17 Nov 2019 08:11:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4864", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"907c0dc2b104bfe644d1a987a2ca8717\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"62b0bd502144148198377c97e56b1db4\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -149,27 +145,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F58:3A595:3E02DA8:4A22785:5DCBBB0D", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C981:8CCF02:A6B427:5DD100BA", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:11:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:09:58Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:02 GMT", + "Date": "Sun, 17 Nov 2019 08:11:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4863", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -182,9 +177,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5D:43EF8:8A1E8B3:A47DAB1:5DCBBB0E", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1832:806A:25D94D:2DDF66:5DD100BB", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -193,17 +187,17 @@ "method": "GET", "url": "/repos/forkOwner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:03 GMT", + "Date": "Sun, 17 Nov 2019 08:11:40 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4862", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"907c0dc2b104bfe644d1a987a2ca8717\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"62b0bd502144148198377c97e56b1db4\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -215,28 +209,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5E:2CFED:9061857:ABE2E65:5DCBBB0E", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1834:2E3F0:2FB71AD:38735C9:5DD100BB", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:11:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:09:58Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:04 GMT", + "Date": "Sun, 17 Nov 2019 08:11:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4861", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e075715fd8bd8ebfcee0c977aed402a3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"79ec3ea98319636cf9a6f7ef89f24fc2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -248,9 +241,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F65:2CFED:9061A77:ABE30FF:5DCBBB0F", - "content-length": "3539", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1836:34218:2F1BC0E:37CE7E8:5DD100BD", + "content-length": "3539" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -259,17 +251,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:04 GMT", + "Date": "Sun, 17 Nov 2019 08:11:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4860", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"afaa49d0c9b7bcc8328f407de7bfccdd\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"d032b56a5fb3e33af271cf38040cab72\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -281,27 +273,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F64:BBFA:8803BEE:A2B25AE:5DCBBB0F", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1835:470C9:227C88D:28F9A4A:5DD100BD", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:05 GMT", - "Content-Type": "text/plain; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:11:46 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "468", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4859", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", + "ETag": "\"2756f809c7dba6082119d6a1dbaba8b3448fee1c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:52 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -313,24 +306,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F69:BBF5:3C4BDAB:480F06A:5DCBBB10", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1838:2E3F0:2FB7926:3873E5A:5DD100C1" }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:05 GMT", + "Date": "Sun, 17 Nov 2019 08:11:47 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4858", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", @@ -345,88 +336,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6E:450D6:6A47CA4:7E93C38:5DCBBB10", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1841:1C985:133F0FC:16E0D7A:5DD100C2", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:05 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4857", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6B:33B09:69A19BA:7E18517:5DCBBB10", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:05 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4856", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6C:3A595:3E030E7:4A22B56:5DCBBB10", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:05 GMT", + "Date": "Sun, 17 Nov 2019 08:11:49 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4855", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"bd8cecd81fe43295f14669cfe90d86c5\"", @@ -441,86 +367,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6A:43EF8:8A1ED3F:A47E021:5DCBBB10", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1839:8072:2DF15DC:368D5D1:5DD100C3", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:08 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "468", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4854", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"24d0b0975eef1f8d41f8172cad1f430c23865b16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:10 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7E:BBF8:6937743:7D7FE96:5DCBBB14", - "connection": "keep-alive" - }, - "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4853", - "X-RateLimit-Reset": "1573635352", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7F:450E4:89932E6:A3E1916:5DCBBB15", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:09 GMT", + "Date": "Sun, 17 Nov 2019 08:11:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4852", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -532,9 +395,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F80:43EF6:6786AF7:7B97ADF:5DCBBB15", - "content-length": "218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1842:470CB:2CDD751:351CB5B:5DD100C4", + "content-length": "218" }, "response": "{\n \"message\": \"No commit found for the ref cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -543,13 +405,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:10 GMT", + "Date": "Sun, 17 Nov 2019 08:11:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4851", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -561,9 +423,36 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F85:43EF8:8A1F5D1:A47EA7B:5DCBBB15", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1843:8072:2DF164A:368D68C:5DD100C4", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:11:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1845:8072:2DF1918:368D979:5DD100C7", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -573,17 +462,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:11 GMT", + "Date": "Sun, 17 Nov 2019 08:11:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4850", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ef42fc147d6776e60ba49df0731fa2a1\"", + "ETag": "\"abfcfad3154cfd4c78ec1f6a50eda1d2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -596,8 +485,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8A:3A596:65B2210:7978164:5DCBBB16", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1847:1C98C:23659EB:29E415D:5DD100C9" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -606,16 +494,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:11 GMT", + "Date": "Sun, 17 Nov 2019 08:11:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4849", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7eb054c43b47b5f52dd9462454f2faab\"", + "ETag": "W/\"db89b525660a4602547c725767b2c840\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -627,196 +515,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8F:450D5:3AF43E3:469409D:5DCBBB17", - "content-length": "5429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1849:2E3F0:2FB84AB:3874C4B:5DD100CC", + "content-length": "5429" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4848", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f2b1cba0f02bf0d3b25fff5d065a3b2e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F90:33B0A:8AA523C:A56335F:5DCBBB18", - "content-length": "11959", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4847", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4585dc787de244be7f1f1aa2d84c7f29\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F95:450D6:6A48806:7E949AA:5DCBBB18", - "content-length": "846", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4846", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"37d6bf97eb26930fb57f64f30822b397\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F96:3A596:65B24E5:79784D2:5DCBBB19", - "content-length": "2060", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4845", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df56a8d67631bcd422288765df28c712\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9B:450E4:89939F9:A3E219A:5DCBBB19", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4844", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dd4c133731633ff8823dc6e5af8a5d89\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA1:2CFE8:3EB108A:4B376B9:5DCBBB1A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:15 GMT", + "Date": "Sun, 17 Nov 2019 08:11:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4843", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"627c3796263c6123362195f74567b765\"", + "ETag": "\"e90246fdfc414332230b6a1534748737\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -829,8 +549,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA3:BBFA:8804E0F:A2B3B90:5DCBBB1A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184B:2E3F0:2FB8550:3874D99:5DD100CD" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -840,20 +559,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:16 GMT", + "Date": "Sun, 17 Nov 2019 08:11:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4842", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fd31505de59c26ed02ba88f563e51894\"", + "ETag": "\"4a803e92d0dd3260429e42d00affaabd\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/c030fa3ef9a031a685990ed828af052b6520178e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/f80e03743320d8c750e84e5614c005075a43a422", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -863,28 +582,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA7:3A595:3E03B23:4A23763:5DCBBB1B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:8072:2DF1F87:368E1D4:5DD100CE" }, - "response": "{\n \"sha\": \"c030fa3ef9a031a685990ed828af052b6520178e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OmMwMzBmYTNlZjlhMDMxYTY4NTk5MGVkODI4YWYwNTJiNjUyMDE3OGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c030fa3ef9a031a685990ed828af052b6520178e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/c030fa3ef9a031a685990ed828af052b6520178e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:16Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:16Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"f80e03743320d8c750e84e5614c005075a43a422\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOmY4MGUwMzc0MzMyMGQ4Yzc1MGU4NGU1NjE0YzAwNTA3NWE0M2E0MjI=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/f80e03743320d8c750e84e5614c005075a43a422\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/f80e03743320d8c750e84e5614c005075a43a422\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:11:58Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:11:58Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"c030fa3ef9a031a685990ed828af052b6520178e\"}", + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"f80e03743320d8c750e84e5614c005075a43a422\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:17 GMT", + "Date": "Sun, 17 Nov 2019 08:12:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "764", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4841", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4772", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0a2e1c273b492ff4c8f4a1b18382a3a5\"", + "ETag": "\"87970d30a1c89f8c868325dc9f82d36b\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", @@ -897,27 +615,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAC:BBFA:8805048:A2B3E38:5DCBBB1C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1851:470C9:227D756:28FAC68:5DD100CF" }, - "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM2MzIzMjAyMTQtZzVmZHZhdmg1bm8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c030fa3ef9a031a685990ed828af052b6520178e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c030fa3ef9a031a685990ed828af052b6520178e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"f80e03743320d8c750e84e5614c005075a43a422\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/f80e03743320d8c750e84e5614c005075a43a422\"\n }\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:18 GMT", + "Date": "Sun, 17 Nov 2019 08:12:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4840", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4771", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2ddef50feeb497bfd972a037f18af352\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"e01c05474a1432d635bbd04d7a948bab\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -930,11 +647,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB1:450D5:3AF489D:469463F:5DCBBB1D", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1853:34217:2324029:29C1D34:5DD100D0", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/598a91cf8e7c5faa7744920bbb975e264ebeacf1\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2da3b45dceb80258879d4acb7c534ac6747005b6\"\n }\n}\n", "status": 200 }, { @@ -942,20 +658,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:18 GMT", + "Date": "Sun, 17 Nov 2019 08:12:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4839", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4770", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"63cb719b067b6de872e1d81799da6a68\"", + "ETag": "\"86d881c1e84b33143d1aa2bdfcfc56a2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/24d0b0975eef1f8d41f8172cad1f430c23865b16", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -965,64 +681,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB6:BBF8:6938201:7D80BDC:5DCBBB1E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1854:470C9:227D993:28FAF12:5DD100D1" }, - "response": "{\n \"sha\": \"24d0b0975eef1f8d41f8172cad1f430c23865b16\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/24d0b0975eef1f8d41f8172cad1f430c23865b16\"\n}\n", + "response": "{\n \"sha\": \"2756f809c7dba6082119d6a1dbaba8b3448fee1c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/598a91cf8e7c5faa7744920bbb975e264ebeacf1?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4838", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d31689a894433788942f93fea42e8aaa\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB7:3A596:65B2C0B:7978D58:5DCBBB1F", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e038bee0f4d675b9c57d9c01321b9d02e2150a09\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e038bee0f4d675b9c57d9c01321b9d02e2150a09\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"24d0b0975eef1f8d41f8172cad1f430c23865b16\"}]}", + "body": "{\"base_tree\":\"2da3b45dceb80258879d4acb7c534ac6747005b6\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2756f809c7dba6082119d6a1dbaba8b3448fee1c\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:20 GMT", + "Date": "Sun, 17 Nov 2019 08:12:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4837", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"240bb5e2e3284b4e93a36cc8835c7535\"", + "ETag": "\"e9c7c9869bef4d7dbab2d46ad2cd21d8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1032,31 +714,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBC:43EEE:1DA5DAE:237333A:5DCBBB1F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1856:1C98C:236614B:29E4AA2:5DD100D1" }, - "response": "{\n \"sha\": \"30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e038bee0f4d675b9c57d9c01321b9d02e2150a09\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e038bee0f4d675b9c57d9c01321b9d02e2150a09\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"30aa0473b7445172ea9965a966985c37ad73bdf5\",\"parents\":[\"598a91cf8e7c5faa7744920bbb975e264ebeacf1\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"1b7e6f1308f562fca832589b61da35e99db9829d\",\"parents\":[\"2da3b45dceb80258879d4acb7c534ac6747005b6\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:20 GMT", + "Date": "Sun, 17 Nov 2019 08:12:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4836", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"22db6e68817cd10712748a2192188f59\"", + "ETag": "\"b683b54f3855faaf05def3834d7636ae\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/fe468729cf704bf2cf70341928c404a9d0578da8", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a738db2d91378949a9ad85a72551e6aca0aec5ec", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1066,27 +747,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC8:43EF8:8A20605:A47FE10:5DCBBB20", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1857:23E1A:21B8184:28085F2:5DD100D2" }, - "response": "{\n \"sha\": \"fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OmZlNDY4NzI5Y2Y3MDRiZjJjZjcwMzQxOTI4YzQwNGE5ZDA1NzhkYTg=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:20Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:20Z\"\n },\n \"tree\": {\n \"sha\": \"30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/598a91cf8e7c5faa7744920bbb975e264ebeacf1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOmE3MzhkYjJkOTEzNzg5NDlhOWFkODVhNzI1NTFlNmFjYTBhZWM1ZWM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:12:02Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:12:02Z\"\n },\n \"tree\": {\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/2da3b45dceb80258879d4acb7c534ac6747005b6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"fe468729cf704bf2cf70341928c404a9d0578da8\",\"force\":false}", + "body": "{\"sha\":\"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:21 GMT", + "Date": "Sun, 17 Nov 2019 08:12:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4835", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"36528ae184326f1677edb035b81b21c4\"", + "ETag": "W/\"6938ceb62a545e087c1690dee7fb9346\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1098,24 +778,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC9:450E4:899449E:A3E2EAF:5DCBBB20", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1858:23E1B:2E5BF77:36F0C7E:5DD100D3", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/fe468729cf704bf2cf70341928c404a9d0578da8\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a738db2d91378949a9ad85a72551e6aca0aec5ec\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:22 GMT", + "Date": "Sun, 17 Nov 2019 08:12:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4834", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1127,9 +806,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCB:2CFDF:9A6C23:B9E2F5:5DCBBB22", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185F:23E18:7469EC:8B4EB8:5DD100D5", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1138,18 +816,18 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:22 GMT", + "Date": "Sun, 17 Nov 2019 08:12:05 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4833", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:13:16 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:11:58 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1161,8 +839,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCA:2CFE4:199A40E:1EA0CBF:5DCBBB22", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185D:1C98C:23666DE:29E507C:5DD100D5" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1171,17 +848,17 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:23 GMT", + "Date": "Sun, 17 Nov 2019 08:12:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4832", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"670f266dd5ba4a5f495489f4ced99dcd\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"97465498ab92155855b0e6ad6a721a87\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1194,57 +871,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCE:33B09:69A3220:7E1A1F1:5DCBBB23", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1861:34218:2F1E07F:37D1396:5DD100D8", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM2MzIzMjAyMTQtZzVmZHZhdmg1bm8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c030fa3ef9a031a685990ed828af052b6520178e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/c030fa3ef9a031a685990ed828af052b6520178e\"\n }\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:24 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4831", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:13:16 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD3:2CFEA:66BC18B:7A7C93A:5DCBBB23", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"f80e03743320d8c750e84e5614c005075a43a422\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/f80e03743320d8c750e84e5614c005075a43a422\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:24 GMT", + "Date": "Sun, 17 Nov 2019 08:12:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4830", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1256,29 +899,60 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD5:BBFA:8805AB3:A2B4B15:5DCBBB23", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1863:1C98C:2366D57:29E5898:5DD100DA", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:11 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:11:58 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1862:34216:131F321:16AB7B2:5DD100DA" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, { "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"base\":\"master\"}", "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:25 GMT", + "Date": "Sun, 17 Nov 2019 08:12:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22245", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4829", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1ea561044c7477c5a90df93e31b5aed7\"", + "ETag": "\"85ad5cd3507f92145d1ac455e0bab2c1\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/5", @@ -1291,27 +965,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD9:450D5:3AF4DE5:4694C93:5DCBBB24", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1864:34214:286EFA:307B0F:5DD100DB" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 340298505,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk4NTA1\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:13:25Z\",\n \"updated_at\": \"2019-11-13T08:13:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c030fa3ef9a031a685990ed828af052b6520178e\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"c030fa3ef9a031a685990ed828af052b6520178e\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:13:21Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c030fa3ef9a031a685990ed828af052b6520178e\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 341831008,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMDA4\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:12:12Z\",\n \"updated_at\": \"2019-11-17T08:12:12Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f80e03743320d8c750e84e5614c005075a43a422\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"f80e03743320d8c750e84e5614c005075a43a422\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:12:04Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:05Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f80e03743320d8c750e84e5614c005075a43a422\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:26 GMT", + "Date": "Sun, 17 Nov 2019 08:12:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4828", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"36528ae184326f1677edb035b81b21c4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"6938ceb62a545e087c1690dee7fb9346\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1324,32 +997,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDE:33B08:3EE892E:4B1039E:5DCBBB25", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1868:8072:2DF359A:368FBF7:5DD100DD", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/fe468729cf704bf2cf70341928c404a9d0578da8\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a738db2d91378949a9ad85a72551e6aca0aec5ec\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6ImMwMzBmYTNlZjlhMDMxYTY4NTk5MGVkODI4YWYwNTJiNjUyMDE3OGUiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMjE0MDU4MzksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1qRTBNRFU0TXprPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTExLTEzVDA4OjEwOjE1WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTExLTEzVDA4OjEwOjE3WiIsInB1c2hlZF9hdCI6IjIwMTktMTEtMTNUMDg6MTM6MjFaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6ImY4MGUwMzc0MzMyMGQ4Yzc1MGU4NGU1NjE0YzAwNTA3NWE0M2E0MjIiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMjIyMTY2MzAsIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1qSXlNVFkyTXpBPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAwWiIsInVwZGF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAyWiIsInB1c2hlZF9hdCI6IjIwMTktMTEtMTdUMDg6MTI6MDRaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:27 GMT", + "Date": "Sun, 17 Nov 2019 08:12:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4827", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ffc6943fc780c27ecc7c31a26f590bb4\"", + "ETag": "\"0c7e3a075187fb17cd517aefbc785feb\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/f0937792f1fcf4c5db3a77973786f952c6833986", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/66444c6196a8432001c6f8ef487c018233847492", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1359,64 +1031,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE3:BBF0:1CEBD9C:227D118:5DCBBB26", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1869:8072:2DF367E:368FCD7:5DD100DD" }, - "response": "{\n \"sha\": \"f0937792f1fcf4c5db3a77973786f952c6833986\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/f0937792f1fcf4c5db3a77973786f952c6833986\"\n}\n", + "response": "{\n \"sha\": \"66444c6196a8432001c6f8ef487c018233847492\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/66444c6196a8432001c6f8ef487c018233847492\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/fe468729cf704bf2cf70341928c404a9d0578da8?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:27 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4826", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"278879ffaecf39530fc119943bc5c3c9\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE8:3A595:3E04594:4A243B8:5DCBBB27", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e038bee0f4d675b9c57d9c01321b9d02e2150a09\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e038bee0f4d675b9c57d9c01321b9d02e2150a09\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"fe468729cf704bf2cf70341928c404a9d0578da8\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f0937792f1fcf4c5db3a77973786f952c6833986\"}]}", + "body": "{\"base_tree\":\"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"66444c6196a8432001c6f8ef487c018233847492\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:28 GMT", + "Date": "Sun, 17 Nov 2019 08:12:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4825", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8580305f886c6151cb2404a7bb451c78\"", + "ETag": "\"cd1adfe30a0081103d37dd06abb6bb07\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/30e14b5d1b49610ec982e4d6ef8a38cd285b0565", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/85e1882580ef7ae2861566289e640c0b53c8d2fd", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1426,31 +1064,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEB:3A596:65B3653:79799C8:5DCBBB28", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186A:23E1B:2E5D2DE:36F2343:5DD100DE" }, - "response": "{\n \"sha\": \"30e14b5d1b49610ec982e4d6ef8a38cd285b0565\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30e14b5d1b49610ec982e4d6ef8a38cd285b0565\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1c1b99cc46b4da010ee2ec4d15acf727a9db8ba8\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1c1b99cc46b4da010ee2ec4d15acf727a9db8ba8\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"85e1882580ef7ae2861566289e640c0b53c8d2fd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/85e1882580ef7ae2861566289e640c0b53c8d2fd\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"2a22d7b483b51b48d519cb06c3338a336410013d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2a22d7b483b51b48d519cb06c3338a336410013d\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"30e14b5d1b49610ec982e4d6ef8a38cd285b0565\",\"parents\":[\"fe468729cf704bf2cf70341928c404a9d0578da8\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"85e1882580ef7ae2861566289e640c0b53c8d2fd\",\"parents\":[\"a738db2d91378949a9ad85a72551e6aca0aec5ec\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:29 GMT", + "Date": "Sun, 17 Nov 2019 08:12:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4824", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ea672bbcd20775f6295ccd9234cc7dd7\"", + "ETag": "\"b55f978d7addacf8c4051a6835580de7\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/4953d72bba8b8d729045d5f11e2dc202c0794aae", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/81e498dd2bbd5c86d6438546481ce67e675d5544", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1460,27 +1097,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF0:BBFA:88061FE:A2B5404:5DCBBB29", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186B:23E1A:21B8E82:280957B:5DD100DF" }, - "response": "{\n \"sha\": \"4953d72bba8b8d729045d5f11e2dc202c0794aae\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjQ5NTNkNzJiYmE4YjhkNzI5MDQ1ZDVmMTFlMmRjMjAyYzA3OTRhYWU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4953d72bba8b8d729045d5f11e2dc202c0794aae\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4953d72bba8b8d729045d5f11e2dc202c0794aae\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:29Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:13:29Z\"\n },\n \"tree\": {\n \"sha\": \"30e14b5d1b49610ec982e4d6ef8a38cd285b0565\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30e14b5d1b49610ec982e4d6ef8a38cd285b0565\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/fe468729cf704bf2cf70341928c404a9d0578da8\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/fe468729cf704bf2cf70341928c404a9d0578da8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjgxZTQ5OGRkMmJiZDVjODZkNjQzODU0NjQ4MWNlNjdlNjc1ZDU1NDQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:12:15Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:12:15Z\"\n },\n \"tree\": {\n \"sha\": \"85e1882580ef7ae2861566289e640c0b53c8d2fd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/85e1882580ef7ae2861566289e640c0b53c8d2fd\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a738db2d91378949a9ad85a72551e6aca0aec5ec\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a738db2d91378949a9ad85a72551e6aca0aec5ec\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"4953d72bba8b8d729045d5f11e2dc202c0794aae\",\"force\":false}", + "body": "{\"sha\":\"81e498dd2bbd5c86d6438546481ce67e675d5544\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:13:30 GMT", + "Date": "Sun, 17 Nov 2019 08:12:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4823", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8762de325d4c2d55dc5c5514dc06a43e\"", + "ETag": "W/\"b485de0352f8158c1752e964f0c89d4f\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1492,43 +1128,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF6:2CFED:906463C:ABE6566:5DCBBB29", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186D:8072:2DF390C:3690023:5DD100E0", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4953d72bba8b8d729045d5f11e2dc202c0794aae\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4953d72bba8b8d729045d5f11e2dc202c0794aae\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c030fa3ef9a031a685990ed828af052b6520178e/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:13:33 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4822", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a876f6bda22dcf25eeced84ce71e530\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E08:43EF6:6788572:7B99B33:5DCBBB2C", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c030fa3ef9a031a685990ed828af052b6520178e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c030fa3ef9a031a685990ed828af052b6520178e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c030fa3ef9a031a685990ed828af052b6520178e/status\"\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/81e498dd2bbd5c86d6438546481ce67e675d5544\"\n }\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json index 5d511695..82d4befb 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:48 GMT", + "Date": "Sun, 17 Nov 2019 08:09:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4915", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A597:8E3FA74:A917979:5DCBBA87", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1981:470C9:2273DE2:28EF55E:5DD1003D", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:48 GMT", + "Date": "Sun, 17 Nov 2019 08:09:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4914", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,9 +53,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E87:3A597:8E3FBB7:A917B08:5DCBBA88", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1985:34218:2F10A40:37C135D:5DD1003D", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 @@ -65,17 +63,17 @@ "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:49 GMT", + "Date": "Sun, 17 Nov 2019 08:09:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4913", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ab0c4d99bc5e0aa55ac2fb3a22cd1d13\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"ea03e13a5274b65d5f7273de45fd8481\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -87,25 +85,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E88:450E4:8985880:A3D0F82:5DCBBA88", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1986:2E3F0:2FACD52:3866E5E:5DD1003E", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "POST", "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:49 GMT", + "Date": "Sun, 17 Nov 2019 08:09:35 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22055", "Server": "GitHub.com", "Status": "202 Accepted", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4912", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -117,27 +114,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8D:2CFEA:66AF0AA:7A6D170:5DCBBA89", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1987:8072:2DE66B7:3680327:5DD1003F" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 202 }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:50 GMT", + "Date": "Sun, 17 Nov 2019 08:09:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4911", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ab0c4d99bc5e0aa55ac2fb3a22cd1d13\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"ea03e13a5274b65d5f7273de45fd8481\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -149,27 +145,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E92:43EF3:3A496BA:45D75C2:5DCBBA8A", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1988:23E1B:2E4F339:36E1855:5DD1003F", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:50 GMT", + "Date": "Sun, 17 Nov 2019 08:09:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4910", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", @@ -182,9 +177,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E93:450D6:6A3D294:7E8705E:5DCBBA8A", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1989:23E1B:2E4F3E5:36E192E:5DD10040", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -193,17 +187,17 @@ "method": "GET", "url": "/repos/forkOwner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:51 GMT", + "Date": "Sun, 17 Nov 2019 08:09:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4909", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ab0c4d99bc5e0aa55ac2fb3a22cd1d13\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"ea03e13a5274b65d5f7273de45fd8481\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -215,61 +209,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E99:33B0A:8A974CB:A55273E:5DCBBA8B", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198A:470CB:2CD364A:3510830:5DD10040", + "content-length": "22145" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4908", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e075715fd8bd8ebfcee0c977aed402a3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9E:3A596:65A7638:796B2FA:5DCBBA8B", - "content-length": "3539", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:52 GMT", + "Date": "Sun, 17 Nov 2019 08:09:37 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4907", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"afaa49d0c9b7bcc8328f407de7bfccdd\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"d032b56a5fb3e33af271cf38040cab72\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -281,30 +241,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9D:2CFEA:66AF413:7A6D570:5DCBBA8B", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198B:2E3EE:22F686E:2980800:5DD10041", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:53 GMT", - "Content-Type": "text/plain; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:09:37 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4906", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", + "ETag": "W/\"79ec3ea98319636cf9a6f7ef89f24fc2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -313,88 +273,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA1:450D6:6A3D4FE:7E87352:5DCBBA8C", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198C:806E:13751FF:17241FE:5DD10041", + "content-length": "3539" }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:53 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4904", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA0:33B09:6996F68:7E0B812:5DCBBA8C", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:53 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4905", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA5:43EF8:8A11630:A46DD86:5DCBBA8C", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:53 GMT", + "Date": "Sun, 17 Nov 2019 08:09:38 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4903", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"bd8cecd81fe43295f14669cfe90d86c5\"", @@ -409,24 +304,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A597:8E40377:A918433:5DCBBA8C", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1990:1C98C:235C110:29D8CFB:5DD10042", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:53 GMT", + "Date": "Sun, 17 Nov 2019 08:09:38 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4902", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1993:470C3:2AA58F:33CD4E:5DD10042", + "content-length": "2565" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:38 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", @@ -441,24 +366,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA4:33B08:3EE10C2:4B0726B:5DCBBA8C", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1999:2E3F0:2FAD134:3867326:5DD10042", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:56 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:09:38 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4901", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4820", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -470,9 +397,67 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB6:43EF8:8A11B4B:A46E3BB:5DCBBA90", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1998:8072:2DE6A5A:368078D:5DD10042", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:38 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4819", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1992:2E3F0:2FAD12E:3867322:5DD10042", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "199B:1C98C:235C46F:29D90FE:5DD10045", + "content-length": "144" }, "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -481,13 +466,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:56 GMT", + "Date": "Sun, 17 Nov 2019 08:09:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4900", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -499,9 +484,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB7:3A596:65A7B46:796B909:5DCBBA90", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199C:34218:2F113EE:37C1F11:5DD10046", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -511,17 +495,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:57 GMT", + "Date": "Sun, 17 Nov 2019 08:09:43 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4899", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ef42fc147d6776e60ba49df0731fa2a1\"", + "ETag": "\"abfcfad3154cfd4c78ec1f6a50eda1d2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -534,8 +518,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBC:2CFEA:66AFADB:7A6DD95:5DCBBA91", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199F:23E1A:21AFF0F:27FE7C8:5DD10046" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -544,16 +527,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:58 GMT", + "Date": "Sun, 17 Nov 2019 08:09:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4898", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7eb054c43b47b5f52dd9462454f2faab\"", + "ETag": "W/\"db89b525660a4602547c725767b2c840\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -565,196 +548,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC1:43EF6:677D1B5:7B8C0EE:5DCBBA91", - "content-length": "5429", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A0:23E1B:2E4FCB8:36E23AB:5DD10047", + "content-length": "5429" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:58 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4897", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f2b1cba0f02bf0d3b25fff5d065a3b2e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC2:2CFED:90547E6:ABD32E6:5DCBBA92", - "content-length": "11959", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4896", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4585dc787de244be7f1f1aa2d84c7f29\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC7:2CFEA:66AFD48:7A6E07D:5DCBBA93", - "content-length": "846", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:59 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4895", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"37d6bf97eb26930fb57f64f30822b397\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC8:2CFE8:3EAAB9A:4B2FB54:5DCBBA93", - "content-length": "2060", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4894", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df56a8d67631bcd422288765df28c712\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECE:33B0A:8A98144:A55368B:5DCBBA94", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4893", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dd4c133731633ff8823dc6e5af8a5d89\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECF:3A597:8E41105:A91946D:5DCBBA94", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:01 GMT", + "Date": "Sun, 17 Nov 2019 08:09:44 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4892", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"627c3796263c6123362195f74567b765\"", + "ETag": "\"e90246fdfc414332230b6a1534748737\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -767,8 +582,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED4:33B09:6997B55:7E0C66F:5DCBBA95", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A1:470C9:22747E9:28F015A:5DD10048" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -778,20 +592,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:02 GMT", + "Date": "Sun, 17 Nov 2019 08:09:45 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4891", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"80f1149934b7c22b9b22b41c0934bc6b\"", + "ETag": "\"7737947553bbd78427a5c21d2dba56e8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/4a8554e2e8efe88d561dd04125ca2cab064bd7c8", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a1196c6570ffbc23dad90aef757687b3c692bfc9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -801,28 +615,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED9:450D6:6A3E094:7E8814E:5DCBBA96", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A2:8070:22AE897:29308D7:5DD10048" }, - "response": "{\n \"sha\": \"4a8554e2e8efe88d561dd04125ca2cab064bd7c8\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjRhODU1NGUyZThlZmU4OGQ1NjFkZDA0MTI1Y2EyY2FiMDY0YmQ3Yzg=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4a8554e2e8efe88d561dd04125ca2cab064bd7c8\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4a8554e2e8efe88d561dd04125ca2cab064bd7c8\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:02Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:02Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"a1196c6570ffbc23dad90aef757687b3c692bfc9\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOmExMTk2YzY1NzBmZmJjMjNkYWQ5MGFlZjc1NzY4N2IzYzY5MmJmYzk=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a1196c6570ffbc23dad90aef757687b3c692bfc9\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a1196c6570ffbc23dad90aef757687b3c692bfc9\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:45Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:45Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"4a8554e2e8efe88d561dd04125ca2cab064bd7c8\"}", + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"a1196c6570ffbc23dad90aef757687b3c692bfc9\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:03 GMT", + "Date": "Sun, 17 Nov 2019 08:09:46 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "764", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4890", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4812", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"37449a56c8e7ce4e845604a3be8e266e\"", + "ETag": "\"01eea23ab61a7cc78806dad77df72f1a\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", @@ -835,23 +648,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDE:2CFE8:3EAAEA2:4B2FF19:5DCBBA96", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A5:1C993:2D25B38:358FC81:5DD10049" }, - "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM2MzIzMjAyMTQtZzVmZHZhdmg1bm8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"4a8554e2e8efe88d561dd04125ca2cab064bd7c8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/4a8554e2e8efe88d561dd04125ca2cab064bd7c8\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"a1196c6570ffbc23dad90aef757687b3c692bfc9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a1196c6570ffbc23dad90aef757687b3c692bfc9\"\n }\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:04 GMT", + "Date": "Sun, 17 Nov 2019 08:09:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4889", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4811", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -864,9 +676,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE3:43EF8:8A128A2:A46F3E9:5DCBBA97", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A6:1C98C:235C935:29D96B6:5DD1004A", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -876,17 +687,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:05 GMT", + "Date": "Sun, 17 Nov 2019 08:09:47 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4888", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"db11af0899c9268a271504ccb678851b\"", + "ETag": "\"5003a65fe2ce15e018734b6a8e3b9dfe\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -899,8 +710,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE5:43EF8:8A129B3:A46F530:5DCBBA98", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A7:1C993:2D25D4A:358FEF8:5DD1004A" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -910,17 +720,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:05 GMT", + "Date": "Sun, 17 Nov 2019 08:09:48 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "571", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4887", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"029bcc2017b4c8e1f7e4bdf1e615c5da\"", + "ETag": "\"c9b9796ce357feff5e3f7a615e7f9b1c\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -933,8 +743,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE9:450E4:898738A:A3D3021:5DCBBA99", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A8:8072:2DE759E:368150B:5DD1004B" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -944,20 +753,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:06 GMT", + "Date": "Sun, 17 Nov 2019 08:09:48 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1156", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4886", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c6d17668241ca4e57645dd23c0770b7f\"", + "ETag": "\"fc8966a8c05cb69741d75b43e4479b42\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/35689b47f95c67f210c3e87dea00d27c453f1623", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/84a9810073327a0ede4c2fd3a39d3200862f7703", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -967,28 +776,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEE:43EF3:3A4A4C2:45D8670:5DCBBA99", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AD:1C98C:235CB26:29D9900:5DD1004C" }, - "response": "{\n \"sha\": \"35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjM1Njg5YjQ3Zjk1YzY3ZjIxMGMzZTg3ZGVhMDBkMjdjNDUzZjE2MjM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:06Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:06Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjg0YTk4MTAwNzMzMjdhMGVkZTRjMmZkM2EzOWQzMjAwODYyZjc3MDM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:48Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:48Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"35689b47f95c67f210c3e87dea00d27c453f1623\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"84a9810073327a0ede4c2fd3a39d3200862f7703\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:07 GMT", + "Date": "Sun, 17 Nov 2019 08:09:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "494", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4885", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4822dddae3eecbff753ef4050e0a7565\"", + "ETag": "\"f23b613137c931bb54c76f982573d2a5\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", @@ -1001,10 +809,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEF:2CFE4:1997FF3:1E9DF8F:5DCBBA9A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AF:8072:2DE7753:368170F:5DD1004D" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/35689b47f95c67f210c3e87dea00d27c453f1623\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/84a9810073327a0ede4c2fd3a39d3200862f7703\"\n }\n}\n", "status": 201 }, { @@ -1012,20 +819,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:08 GMT", + "Date": "Sun, 17 Nov 2019 08:09:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4884", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"63cb719b067b6de872e1d81799da6a68\"", + "ETag": "\"86d881c1e84b33143d1aa2bdfcfc56a2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/24d0b0975eef1f8d41f8172cad1f430c23865b16", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1035,64 +842,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF4:33B09:699853E:7E0D21D:5DCBBA9B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B0:806E:1375811:1724966:5DD1004E" }, - "response": "{\n \"sha\": \"24d0b0975eef1f8d41f8172cad1f430c23865b16\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/24d0b0975eef1f8d41f8172cad1f430c23865b16\"\n}\n", + "response": "{\n \"sha\": \"2756f809c7dba6082119d6a1dbaba8b3448fee1c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/35689b47f95c67f210c3e87dea00d27c453f1623?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4883", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c602a6e2488c887ed44ec5a239934448\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF9:BBF5:3C46426:4808516:5DCBBA9C", - "content-length": "571", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"35689b47f95c67f210c3e87dea00d27c453f1623\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"24d0b0975eef1f8d41f8172cad1f430c23865b16\"}]}", + "body": "{\"base_tree\":\"84a9810073327a0ede4c2fd3a39d3200862f7703\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2756f809c7dba6082119d6a1dbaba8b3448fee1c\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:09 GMT", + "Date": "Sun, 17 Nov 2019 08:09:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4882", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"240bb5e2e3284b4e93a36cc8835c7535\"", + "ETag": "\"e9c7c9869bef4d7dbab2d46ad2cd21d8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1102,31 +875,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EFE:450D5:3AEF4A2:468DEAA:5DCBBA9D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A1:470CB:2CD44DF:35119EE:5DD1004F" }, - "response": "{\n \"sha\": \"30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e038bee0f4d675b9c57d9c01321b9d02e2150a09\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e038bee0f4d675b9c57d9c01321b9d02e2150a09\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"30aa0473b7445172ea9965a966985c37ad73bdf5\",\"parents\":[\"35689b47f95c67f210c3e87dea00d27c453f1623\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"1b7e6f1308f562fca832589b61da35e99db9829d\",\"parents\":[\"84a9810073327a0ede4c2fd3a39d3200862f7703\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:10 GMT", + "Date": "Sun, 17 Nov 2019 08:09:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4881", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"15c2af5c5bc5346ef699b94243cf3c04\"", + "ETag": "\"58f32f0f7079cbb22a37ee4bf3a3194f\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/598a91cf8e7c5faa7744920bbb975e264ebeacf1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/2da3b45dceb80258879d4acb7c534ac6747005b6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1136,27 +908,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F03:450E4:8987C01:A3D3A46:5DCBBA9D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1A:21B071F:27FF165:5DD1004F" }, - "response": "{\n \"sha\": \"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA1ODM5OjU5OGE5MWNmOGU3YzVmYWE3NzQ0OTIwYmJiOTc1ZTI2NGViZWFjZjE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:10Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:10Z\"\n },\n \"tree\": {\n \"sha\": \"30aa0473b7445172ea9965a966985c37ad73bdf5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/30aa0473b7445172ea9965a966985c37ad73bdf5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/35689b47f95c67f210c3e87dea00d27c453f1623\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/35689b47f95c67f210c3e87dea00d27c453f1623\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjJkYTNiNDVkY2ViODAyNTg4NzlkNGFjYjdjNTM0YWM2NzQ3MDA1YjY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:52Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:09:52Z\"\n },\n \"tree\": {\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/84a9810073327a0ede4c2fd3a39d3200862f7703\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/84a9810073327a0ede4c2fd3a39d3200862f7703\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\"force\":false}", + "body": "{\"sha\":\"2da3b45dceb80258879d4acb7c534ac6747005b6\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:11 GMT", + "Date": "Sun, 17 Nov 2019 08:09:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4880", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2ddef50feeb497bfd972a037f18af352\"", + "ETag": "W/\"e01c05474a1432d635bbd04d7a948bab\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1168,24 +939,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F04:2CFEA:66B10AA:7A6F71D:5DCBBA9E", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B5:34216:131A9C1:16A5EAB:5DD10050", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA1ODM5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"598a91cf8e7c5faa7744920bbb975e264ebeacf1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/598a91cf8e7c5faa7744920bbb975e264ebeacf1\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2da3b45dceb80258879d4acb7c534ac6747005b6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2da3b45dceb80258879d4acb7c534ac6747005b6\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:12 GMT", + "Date": "Sun, 17 Nov 2019 08:09:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4879", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1197,9 +967,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0D:33B08:3EE2251:4B08736:5DCBBA9F", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B6:470C9:227508F:28F0BC5:5DD10051", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1208,18 +977,18 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:12 GMT", + "Date": "Sun, 17 Nov 2019 08:09:54 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4878", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:02 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:09:45 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1231,8 +1000,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0E:33B08:3EE2257:4B0873A:5DCBBA9F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A8:8072:2DE7CED:3681DC6:5DD10051" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json index eef58c28..5eee5907 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:39 GMT", + "Date": "Sun, 17 Nov 2019 08:05:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4612", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F48:2CFE8:3E9DC86:4B20162:5DCBB98F", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1811:470CB:2CC2E30:34FC918:5DD0FF5E", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:40 GMT", + "Date": "Sun, 17 Nov 2019 08:05:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4611", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4C:33B08:3ED4D84:4AF8704:5DCBB98F", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1815:34218:2EFC77C:37A956A:5DD0FF5F", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -68,16 +66,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:41 GMT", + "Date": "Sun, 17 Nov 2019 08:05:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4610", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4661", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -90,9 +88,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F51:3A597:8E25834:A8F8598:5DCBB990", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1817:2E3F0:2F9BA8E:385217F:5DD0FF5F", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -101,17 +98,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:42 GMT", + "Date": "Sun, 17 Nov 2019 08:05:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4609", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4660", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"328fefbc290cee5f22bbc82708e27286\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"8f09a9b26c505bdf8238f2a2f3b0c5b0\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -123,28 +120,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F56:450D5:3AE3BF8:467FD7E:5DCBB991", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1818:8070:22A0EE8:29201E1:5DD0FF60", + "content-length": "7296" }, - "response": "{\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:05:45Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:05:06Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:44 GMT", + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4608", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"86071b9029874793ef66b7f15d4a54e6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -156,9 +152,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5F:43EF6:676AC24:7B75BCB:5DCBB993", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181A:2E3EE:22E7077:296E35C:5DD0FF61", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -167,17 +162,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:45 GMT", + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4607", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4658", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0fdf5cd0f3854ddcb55c95a2b0effaaf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"2dfa0842502045aa73be369037322600\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -189,120 +184,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F60:33B08:3ED50F8:4AF8AE8:5DCBB993", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181B:2E3F0:2F9BC22:3852373:5DD0FF61", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:49 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4606", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6F:33B09:6983302:7DF3CC8:5DCBB997", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:49 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4605", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F70:2CFED:903A76B:ABB3CA5:5DCBB997", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:49 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4604", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F72:43EF8:89F9D86:A4513FA:5DCBB997", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:49 GMT", + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4603", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -317,53 +215,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6E:450E4:896EDE9:A3B55C4:5DCBB997", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181E:806A:25C654:2DC751:5DD0FF61", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4602", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F80:43EF8:89F9E25:A4512DE:5DCBB997", - "content-length": "144", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:50 GMT", + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4601", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -378,24 +246,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6B:33B07:19D21BD:1F2BE78:5DCBB997", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181D:34217:230CD86:29A6045:5DD0FF61", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:51 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4600", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4655", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -407,9 +277,126 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8F:450E4:896EF8A:A3B58B8:5DCBB99A", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1820:34217:230CD94:29A6047:5DD0FF61", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:05:53 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4654", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1827:470CB:2CC3184:34FCD07:5DD0FF61", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:05:54 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4653", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1828:34217:230CDFD:29A60D1:5DD0FF62", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:05:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4652", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1829:8070:22A1383:2920789:5DD0FF65", + "content-length": "144" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:05:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4651", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "182A:470C9:2266259:28DEEB1:5DD0FF65", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -419,17 +406,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:51 GMT", + "Date": "Sun, 17 Nov 2019 08:05:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4599", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4650", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2322927891cae93acf08fdda52d363ea\"", + "ETag": "\"86d691e55fcb8e55fa00b8bed816c2b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -442,8 +429,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F94:3A595:3DF0203:4A0C0F8:5DCBB99B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182B:1C993:2D12A5D:3579158:5DD0FF66" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -452,16 +438,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:52 GMT", + "Date": "Sun, 17 Nov 2019 08:05:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4598", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4649", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -473,196 +459,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F95:450D5:3AE4275:4680585:5DCBB99B", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182C:34218:2EFD124:37AA10D:5DD0FF67", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4597", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"347da4c3e9e1d5b2c05447eb53a75caf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9A:450D5:3AE42E5:468060C:5DCBB99C", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4596", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e98a675f711752ab78ffbd2b2335f9c4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9B:450D6:6A2A652:7E70788:5DCBB99D", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4595", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA0:43EF8:89FA2C9:A451B27:5DCBB99D", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4594", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9f5e9fab5889373d1ac19193c49a67ea\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA5:450D6:6A2A763:7E708E4:5DCBB99E", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4593", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA6:2CFE4:1993021:1E97E00:5DCBB99E", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:56 GMT", + "Date": "Sun, 17 Nov 2019 08:06:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4592", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4648", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df03b9f2a5c710df199b70b4a0d6a3db\"", + "ETag": "\"512dcc4355a8a182499e0573be267a38\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -675,8 +493,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAB:450D5:3AE4509:46808A7:5DCBB99F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182D:23E1B:2E3BEBE:36CAB34:5DD0FF67" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -686,20 +503,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:56 GMT", + "Date": "Sun, 17 Nov 2019 08:06:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4591", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4647", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"483e028b881902171733c33c203fbfa8\"", + "ETag": "\"8d11079bc6ca656996358ad372e54e53\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/becd6472e1398c0326aed587e8ec294c54d489ba", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1fd2586ee941532a7d7979616b294ac261ddd695", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -709,28 +526,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB0:450E4:896F770:A3B6279:5DCBB9A0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182F:2E3F0:2F9C419:3852D46:5DD0FF68" }, - "response": "{\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmJlY2Q2NDcyZTEzOThjMDMyNmFlZDU4N2U4ZWMyOTRjNTRkNDg5YmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"html_url\": \"https://github.com/owner/repo/commit/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:06:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:06:56Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFmZDI1ODZlZTk0MTUzMmE3ZDc5Nzk2MTZiMjk0YWMyNjFkZGQ2OTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"html_url\": \"https://github.com/owner/repo/commit/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:00Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:00Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"becd6472e1398c0326aed587e8ec294c54d489ba\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"1fd2586ee941532a7d7979616b294ac261ddd695\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:57 GMT", + "Date": "Sun, 17 Nov 2019 08:06:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4590", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4646", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a62742b670b78ef4077198fc45766eda\"", + "ETag": "\"9fc504e8c9a6eb23d9d35afc10c2ad9e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -743,10 +559,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB6:BBEA:9E35C3:BE2E8D:5DCBB9A1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1830:1C993:2D12E2E:35795F5:5DD0FF69" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/becd6472e1398c0326aed587e8ec294c54d489ba\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1fd2586ee941532a7d7979616b294ac261ddd695\"\n }\n}\n", "status": 201 }, { @@ -754,17 +569,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:59 GMT", + "Date": "Sun, 17 Nov 2019 08:06:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4589", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4645", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8f65f1d7de3d920b119fda646d9540b6\"", + "ETag": "\"f79bfb0e2e10360b1da8015d90c4a412\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/1", @@ -777,23 +592,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBF:2CFEA:669DE73:7A585DF:5DCBB9A2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1831:34215:788989:9054BA:5DD0FF6A" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 340296174,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2MTc0\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:06:58Z\",\n \"updated_at\": \"2019-11-13T08:06:58Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:06:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:06:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/becd6472e1398c0326aed587e8ec294c54d489ba\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 341830646,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNjQ2\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:06:02Z\",\n \"updated_at\": \"2019-11-17T08:06:02Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:02Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:02Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1fd2586ee941532a7d7979616b294ac261ddd695\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:59 GMT", + "Date": "Sun, 17 Nov 2019 08:06:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4588", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4644", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -806,9 +620,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC0:BBFA:87E04D9:A2874D4:5DCBB9A3", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1838:2E3F0:2F9C9B8:3853403:5DD0FF6B", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -818,17 +631,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:00 GMT", + "Date": "Sun, 17 Nov 2019 08:06:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4587", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4643", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"11c80395a17e33763d4cd8500c2856e2\"", + "ETag": "\"fa7606e1fc33dece081dc1c26effb6bb\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -841,8 +654,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC5:2CFED:903B81D:ABB51CF:5DCBB9A4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1839:8070:22A1B68:292110E:5DD0FF6C" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -852,17 +664,17 @@ "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:01 GMT", + "Date": "Sun, 17 Nov 2019 08:06:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "561", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4586", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4642", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3d457060dfa0a69ee605ace390c82ae7\"", + "ETag": "\"878b83224dbc3921ec8e7756b4dadc7d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -875,8 +687,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC6:BBFA:87E06A1:A287734:5DCBB9A4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183A:1C993:2D13520:3579E20:5DD0FF6C" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -886,20 +697,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:02 GMT", + "Date": "Sun, 17 Nov 2019 08:06:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1105", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4585", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4641", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"597f9df2035a0923a6c5e27d3196733f\"", + "ETag": "\"ad2714e01befe77c61193a3ba1f7bf6b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ce0e8207880b7355032557f0a15b157c2b0be542", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8c9cb725eeb4f337c7e81b102076f29604d8dd56", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -909,28 +720,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCC:3A597:8E27AD8:A8FAF50:5DCBB9A5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183B:2E3F0:2F9CC6D:3853742:5DD0FF6D" }, - "response": "{\n \"sha\": \"ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmNlMGU4MjA3ODgwYjczNTUwMzI1NTdmMGExNWIxNTdjMmIwYmU1NDI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"html_url\": \"https://github.com/owner/repo/commit/ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:01Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjhjOWNiNzI1ZWViNGYzMzdjN2U4MWIxMDIwNzZmMjk2MDRkOGRkNTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"html_url\": \"https://github.com/owner/repo/commit/8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:05Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"ce0e8207880b7355032557f0a15b157c2b0be542\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"8c9cb725eeb4f337c7e81b102076f29604d8dd56\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:03 GMT", + "Date": "Sun, 17 Nov 2019 08:06:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "484", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4584", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4640", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cbcc1c98ff706f0355f769a89cbdc9aa\"", + "ETag": "\"93bb52a369aaa20528ed2a4e64c9b046\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", @@ -943,31 +753,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD0:3A596:65969E0:7956DF2:5DCBB9A6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183C:8072:2DD4CDC:366B394:5DD0FF6E" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ce0e8207880b7355032557f0a15b157c2b0be542\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c9cb725eeb4f337c7e81b102076f29604d8dd56\"\n }\n}\n", "status": 201 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJiZWNkNjQ3MmUxMzk4YzAzMjZhZWQ1ODdlOGVjMjk0YzU0ZDQ4OWJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIxZmQyNTg2ZWU5NDE1MzJhN2Q3OTc5NjE2YjI5NGFjMjYxZGRkNjk1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:03 GMT", + "Date": "Sun, 17 Nov 2019 08:06:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4583", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4639", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"105b273bc5b36c81c9a3992d397ff7aa\"", + "ETag": "\"5147b6daec8ef99c51e17fb2a994fa44\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/ca8254012155a1318f34467fb93a0f941b57fc55", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a13e4b514607b2d11b0df2aa017ed39a9a512cd8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -977,64 +786,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD5:BBFA:87E0BD2:A287D31:5DCBB9A7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183D:2E3ED:137315D:1736DBA:5DD0FF6F" }, - "response": "{\n \"sha\": \"ca8254012155a1318f34467fb93a0f941b57fc55\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8254012155a1318f34467fb93a0f941b57fc55\"\n}\n", + "response": "{\n \"sha\": \"a13e4b514607b2d11b0df2aa017ed39a9a512cd8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a13e4b514607b2d11b0df2aa017ed39a9a512cd8\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/ce0e8207880b7355032557f0a15b157c2b0be542?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4582", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0774d31909ba710a7cd3b30644aa4238\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDA:450E4:8970537:A3B72F4:5DCBB9A8", - "content-length": "561", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ce0e8207880b7355032557f0a15b157c2b0be542\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ca8254012155a1318f34467fb93a0f941b57fc55\"}]}", + "body": "{\"base_tree\":\"8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a13e4b514607b2d11b0df2aa017ed39a9a512cd8\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:05 GMT", + "Date": "Sun, 17 Nov 2019 08:06:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4581", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4638", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cbe8331c03e4af76dcda34ecde25449f\"", + "ETag": "\"889b6dd4dd5b1e62fcbe05dc77509245\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/f4802b8e15f51e00cc838a4209ad61acc5812ad8", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1044,31 +819,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDB:33B05:2431A8:2C7672:5DCBB9A8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183E:34218:2EFDFE6:37AB29E:5DD0FF70" }, - "response": "{\n \"sha\": \"f4802b8e15f51e00cc838a4209ad61acc5812ad8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f4802b8e15f51e00cc838a4209ad61acc5812ad8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ca8254012155a1318f34467fb93a0f941b57fc55\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8254012155a1318f34467fb93a0f941b57fc55\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a13e4b514607b2d11b0df2aa017ed39a9a512cd8\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a13e4b514607b2d11b0df2aa017ed39a9a512cd8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"f4802b8e15f51e00cc838a4209ad61acc5812ad8\",\"parents\":[\"ce0e8207880b7355032557f0a15b157c2b0be542\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654\",\"parents\":[\"8c9cb725eeb4f337c7e81b102076f29604d8dd56\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:05 GMT", + "Date": "Sun, 17 Nov 2019 08:06:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4580", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4637", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0c56ce0920dc49a339d424a9befbbb4f\"", + "ETag": "\"ae6eceb6b12793a0a794d2f473638efe\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/655e3e2d44a81b7a0e54eb637e1466b4f08b0192", + "Location": "https://api.github.com/repos/owner/repo/git/commits/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1078,27 +852,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE0:2CFEA:669E8E1:7A59257:5DCBB9A9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183F:23E1B:2E3CDD3:36CBD00:5DD0FF71" }, - "response": "{\n \"sha\": \"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjY1NWUzZTJkNDRhODFiN2EwZTU0ZWI2MzdlMTQ2NmI0ZjA4YjAxOTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"html_url\": \"https://github.com/owner/repo/commit/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:05Z\"\n },\n \"tree\": {\n \"sha\": \"f4802b8e15f51e00cc838a4209ad61acc5812ad8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f4802b8e15f51e00cc838a4209ad61acc5812ad8\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ce0e8207880b7355032557f0a15b157c2b0be542\",\n \"html_url\": \"https://github.com/owner/repo/commit/ce0e8207880b7355032557f0a15b157c2b0be542\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjY3Y2U4ODYwYjFjYjdiNGM3MjE3Y2Q1MmFkOGYzNWVjYTQ4OTdiZDg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"html_url\": \"https://github.com/owner/repo/commit/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:09Z\"\n },\n \"tree\": {\n \"sha\": \"c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c0d4f8225d8dd8c17a7bf07aaf4625d8cf24b654\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c9cb725eeb4f337c7e81b102076f29604d8dd56\",\n \"html_url\": \"https://github.com/owner/repo/commit/8c9cb725eeb4f337c7e81b102076f29604d8dd56\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\"force\":false}", + "body": "{\"sha\":\"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:06 GMT", + "Date": "Sun, 17 Nov 2019 08:06:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4579", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4636", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1c809bd9eed4d769df066d3247c0aca3\"", + "ETag": "W/\"5dbdbd3b3e33b8d3bd63620e0b8da0a5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1110,58 +883,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE5:BBFA:87E1096:A2882FD:5DCBB9AA", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1840:470C7:14B62B4:186BB49:5DD0FF71", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\"\n }\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4578", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEA:3A596:659713B:79576BE:5DCBB9AB", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:07 GMT", + "Date": "Sun, 17 Nov 2019 08:06:11 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4577", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4635", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:06:56 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:06:00 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1173,26 +916,53 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEB:3A595:3DF11DB:4A0D394:5DCBB9AB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1842:470C9:2267203:28E014D:5DD0FF73" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:08 GMT", + "Date": "Sun, 17 Nov 2019 08:06:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4634", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1841:1C98C:234F309:29C9664:5DD0FF73", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:06:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4575", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4632", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9522511e5cd94dae99faad1b74b6fdb3\"", + "ETag": "W/\"de5c638de5d598c2d6738011080561ca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1204,27 +974,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF0:BBFA:87E13E8:A28870E:5DCBB9AC", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1843:806C:87CBB5:A17A12:5DD0FF74", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status?ts=300", + "url": "/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:14 GMT", + "Date": "Sun, 17 Nov 2019 08:06:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4571", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4628", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9522511e5cd94dae99faad1b74b6fdb3\"", + "ETag": "W/\"de5c638de5d598c2d6738011080561ca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1236,27 +1005,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E15:BBFA:87E1D68:A289290:5DCBB9B2", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184F:2E3EC:7A571B:92A39B:5DD0FF79", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status?ts=300", + "url": "/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:19 GMT", + "Date": "Sun, 17 Nov 2019 08:06:23 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4570", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4627", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9522511e5cd94dae99faad1b74b6fdb3\"", + "ETag": "W/\"de5c638de5d598c2d6738011080561ca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1268,11 +1036,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2B:450E4:8971F77:A3B92CF:5DCBB9B7", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:8070:22A2F32:29228C8:5DD0FF7F", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/becd6472e1398c0326aed587e8ec294c54d489ba/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1fd2586ee941532a7d7979616b294ac261ddd695/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json index 02d67ffa..3646bc34 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:21 GMT", + "Date": "Sun, 17 Nov 2019 08:12:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4696", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4750", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0F:244EB:182D9C2:1D5EF2B:5D77AC39", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:8070:22BAD3D:293F3E0:5DD10103", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:22 GMT", + "Date": "Sun, 17 Nov 2019 08:12:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4695", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4749", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,57 +53,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A10:9D1D:199F63:1F4922:5D77AC3A", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1893:1C993:2D35453:35A25C7:5DD10103", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4694", - "X-RateLimit-Reset": "1568127500", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A12:1510C:1811CD:1D79A2:5D77AC3A", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:23 GMT", + "Date": "Sun, 17 Nov 2019 08:12:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4693", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"318c8683d1a36b69ce3cdf6597755a43\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"d424d7ac0313b041455d503556675454\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -116,28 +85,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A14:244E4:B012C3:D5612D:5D77AC3B", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1894:1C993:2D354EA:35A267C:5DD10104", + "content-length": "22145" }, - "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:12:22Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { - "method": "GET", - "url": "/user?ts=0", + "method": "POST", + "url": "/repos/owner/repo/forks", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:24 GMT", + "Date": "Sun, 17 Nov 2019 08:12:53 GMT", "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", "Server": "GitHub.com", - "Status": "200 OK", + "Status": "202 Accepted", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4692", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-RateLimit-Remaining": "4747", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -149,9 +114,71 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A16:15110:18A6640:1DF3796:5D77AC3C", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1895:2E3ED:1383118:1749CB0:5DD10104" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:12:22Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d424d7ac0313b041455d503556675454\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1898:34218:2F210E2:37D4F4D:5DD10105", + "content-length": "22145" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:12:22Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1899:1C985:134103E:16E33D0:5DD10106", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -160,17 +187,17 @@ "method": "GET", "url": "/repos/forkOwner/repo?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Date": "Sun, 17 Nov 2019 08:12:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4691", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"318c8683d1a36b69ce3cdf6597755a43\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"d424d7ac0313b041455d503556675454\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -182,28 +209,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A19:B4DC:ACBF63:D22A1E:5D77AC3C", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189B:23E1A:21BB1BD:280BF78:5DD10106", + "content-length": "22145" }, - "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:12:22Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Date": "Sun, 17 Nov 2019 08:12:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4690", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "ETag": "W/\"d032b56a5fb3e33af271cf38040cab72\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -215,28 +241,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1A:244E7:11BFC19:15A95F0:5D77AC3D", - "content-length": "7422", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189E:1C98C:2369A9A:29E8E1F:5DD10107", + "content-length": "2030" }, - "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Date": "Sun, 17 Nov 2019 08:12:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4689", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4742", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"79ec3ea98319636cf9a6f7ef89f24fc2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -248,123 +273,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1E:244EB:182E0C7:1D5F7DB:5D77AC3D", - "content-length": "12712", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189F:34217:2327BB3:29C63C5:5DD10107", + "content-length": "3539" }, - "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:26 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4688", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A28:9D21:175DA9B:1C7868F:5D77AC3E", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:26 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4687", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A22:15110:18A6967:1DF3B71:5D77AC3D", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:26 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4686", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2A:B4DA:532F42:65790D:5D77AC3D", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Date": "Sun, 17 Nov 2019 08:12:56 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4685", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4740", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "ETag": "W/\"bd8cecd81fe43295f14669cfe90d86c5\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -376,27 +304,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A20:2B1F:1241A8F:164863C:5D77AC3D", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A0:34216:13207E5:16AD0CF:5DD10108", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Date": "Sun, 17 Nov 2019 08:12:56 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4684", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4741", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -408,29 +335,57 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A30:B4DC:ACC0ED:D22C15:5D77AC3E", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A3:2E3EE:2303F42:29906EA:5DD10108", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:56 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4739", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18A4:34215:78E96C:90C6EF:5DD10108", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:30 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "8685", + "Date": "Sun, 17 Nov 2019 08:12:56 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4683", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4738", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6aa2459de242daebf976a6f4bdb3f53068a4ec05\"", - "Last-Modified": "Tue, 10 Sep 2019 13:59:06 GMT", + "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -442,23 +397,86 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A34:B4DE:120E243:15FB4A0:5D77AC41", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A1:34218:2F21367:37D5273:5DD10108", + "content-length": "2565" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"label\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"ref\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\"user\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":207574049,\"node_id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\"name\":\"repo\",\"full_name\":\"forkOwner/repo\",\"private\":false,\"owner\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/forkOwner/repo\",\"description\":null,\"fork\":true,\"url\":\"https://api.github.com/repos/forkOwner/repo\",\"forks_url\":\"https://api.github.com/repos/forkOwner/repo/forks\",\"keys_url\":\"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/forkOwner/repo/teams\",\"hooks_url\":\"https://api.github.com/repos/forkOwner/repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/forkOwner/repo/events\",\"assignees_url\":\"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/forkOwner/repo/tags\",\"blobs_url\":\"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/forkOwner/repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/forkOwner/repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/forkOwner/repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/forkOwner/repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/forkOwner/repo/subscription\",\"commits_url\":\"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/forkOwner/repo/merges\",\"archive_url\":\"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/forkOwner/repo/downloads\",\"issues_url\":\"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/forkOwner/repo/deployments\",\"created_at\":\"2019-09-10T13:56:28Z\",\"updated_at\":\"2019-09-10T13:56:30Z\",\"pushed_at\":\"2019-09-10T13:58:55Z\",\"git_url\":\"git://github.com/forkOwner/repo.git\",\"ssh_url\":\"git@github.com:forkOwner/repo.git\",\"clone_url\":\"https://github.com/forkOwner/repo.git\",\"svn_url\":\"https://github.com/forkOwner/repo\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"mit\",\"name\":\"MIT License\",\"spdx_id\":\"MIT\",\"url\":\"https://api.github.com/licenses/mit\",\"node_id\":\"MDc6TGljZW5zZTEz\"},\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:56 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4737", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18A2:34218:2F21369:37D5275:5DD10108", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:12:59 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "8685", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4736", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"66444c6196a8432001c6f8ef487c018233847492\"", + "Last-Modified": "Sun, 17 Nov 2019 08:12:15 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18A6:2E3EE:23042D0:2990B16:5DD1010B" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"label\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"ref\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"f80e03743320d8c750e84e5614c005075a43a422\",\"user\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":222216630,\"node_id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\"name\":\"repo\",\"full_name\":\"forkOwner/repo\",\"private\":false,\"owner\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/forkOwner/repo\",\"description\":null,\"fork\":true,\"url\":\"https://api.github.com/repos/forkOwner/repo\",\"forks_url\":\"https://api.github.com/repos/forkOwner/repo/forks\",\"keys_url\":\"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/forkOwner/repo/teams\",\"hooks_url\":\"https://api.github.com/repos/forkOwner/repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/forkOwner/repo/events\",\"assignees_url\":\"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/forkOwner/repo/tags\",\"blobs_url\":\"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/forkOwner/repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/forkOwner/repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/forkOwner/repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/forkOwner/repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/forkOwner/repo/subscription\",\"commits_url\":\"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/forkOwner/repo/merges\",\"archive_url\":\"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/forkOwner/repo/downloads\",\"issues_url\":\"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/forkOwner/repo/deployments\",\"created_at\":\"2019-11-17T08:09:00Z\",\"updated_at\":\"2019-11-17T08:09:02Z\",\"pushed_at\":\"2019-11-17T08:12:04Z\",\"git_url\":\"git://github.com/forkOwner/repo.git\",\"ssh_url\":\"git@github.com:forkOwner/repo.git\",\"clone_url\":\"https://github.com/forkOwner/repo.git\",\"svn_url\":\"https://github.com/forkOwner/repo\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"mit\",\"name\":\"MIT License\",\"spdx_id\":\"MIT\",\"url\":\"https://api.github.com/licenses/mit\",\"node_id\":\"MDc6TGljZW5zZTEz\"},\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:30 GMT", + "Date": "Sun, 17 Nov 2019 08:13:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4682", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4735", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -470,9 +488,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A38:2B24:17EEA2E:1D185D8:5D77AC42", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A7:34215:78EA8F:90C83B:5DD1010C", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -481,13 +498,13 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:30 GMT", + "Date": "Sun, 17 Nov 2019 08:13:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4681", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4734", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -499,9 +516,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A36:244E4:B01886:D5684C:5D77AC42", - "content-length": "218", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A9:34217:232805E:29C6953:5DD1010C", + "content-length": "218" }, "response": "{\n \"message\": \"No commit found for the ref cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -510,13 +526,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:31 GMT", + "Date": "Sun, 17 Nov 2019 08:13:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4680", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4733", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -528,9 +544,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3B:1510E:AD7AF3:D3651F:5D77AC43", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AA:8072:2DF6ADC:3693CAC:5DD1010C", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -540,17 +555,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:32 GMT", + "Date": "Sun, 17 Nov 2019 08:13:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4679", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4732", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9110b0f43bac9b530937daefcc0fde5f\"", + "ETag": "\"abfcfad3154cfd4c78ec1f6a50eda1d2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -563,8 +578,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3C:244E7:11C04E1:15AA09D:5D77AC43", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AB:34218:2F21938:37D59A9:5DD1010D" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -573,16 +587,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/branches/master?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:33 GMT", + "Date": "Sun, 17 Nov 2019 08:13:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4678", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4731", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f77cc5d5061b3978c67296ca43107299\"", + "ETag": "W/\"db89b525660a4602547c725767b2c840\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -594,199 +608,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3E:B4E0:16DB7F2:1BD280F:5D77AC44", - "content-length": "6021", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AC:2E3ED:138368F:174A33D:5DD1010D", + "content-length": "5429" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:33 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4677", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4cb59f98c7efebbb9d0b391d65868c46\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A41:2B1F:1242471:1649286:5D77AC45", - "content-length": "11959", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:34 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4676", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"145b65676fde9944237823c2b2f7e235\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A42:3ED7B:1281045:167A612:5D77AC46", - "content-length": "846", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:34 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4675", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dffeebbaee00b1940716502bcfd835a4\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A44:244E4:B01BAD:D56C42:5D77AC46", - "content-length": "2060", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:35 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4674", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2724f7374e1cabc1fc97fc93d56683f7\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A47:3ED76:48E02A:59543C:5D77AC47", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4673", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3a18ca43d35ad985a7254b1d8e5912fe\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A48:244E7:11C0AFF:15AA816:5D77AC47", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:37 GMT", + "Date": "Sun, 17 Nov 2019 08:13:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4672", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4730", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"642fe7ffc59b49d6b9b4eda36ef3fd38\"", + "ETag": "\"e90246fdfc414332230b6a1534748737\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -796,31 +642,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADF:3ED82:18A25C2:1DF912C:5D77AC48", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AE:2E3ED:1383746:174A40E:5DD1010E" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:38 GMT", + "Date": "Sun, 17 Nov 2019 08:13:04 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4671", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4729", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"986648cd1fb4edceb708d775fb53d3bc\"", + "ETag": "\"7ed41e8a56b41fbc30198539c0a7707b\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -830,28 +675,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE0:15110:18A7C92:1DF52FC:5D77AC49", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AF:470C7:14C5BD3:187E2CE:5DD1010F" }, - "response": "{\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OmQ3OWI1NmNlNzNmZmIzM2MzNTE5OGU0NDhmMzRjNWUyOTNjOWFlMTQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:37Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:37Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjI3MmZiOGUxOTVmZmViYjdmYWZhNzE5ZGZhMzBiMmZmMDhhNWU1NzU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:03Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:03Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"d79b56ce73ffb33c35198e448f34c5e293c9ae14\"}", + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:39 GMT", + "Date": "Sun, 17 Nov 2019 08:13:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "764", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4670", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4728", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"be0936e4ec3a45e2216060700137c04a\"", + "ETag": "\"1d90da263aaef53934bbe5d2e49ab8f8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", @@ -864,27 +708,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE2:15110:18A7DCF:1DF5484:5D77AC4A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B0:8070:22BBB54:29404A9:5DD10110" }, - "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\"\n }\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:40 GMT", + "Date": "Sun, 17 Nov 2019 08:13:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4669", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4727", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"935ec6013edebb9966742e49280f0ca3\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"b485de0352f8158c1752e964f0c89d4f\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -897,11 +740,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE5:244EB:182F759:1D61398:5D77AC4B", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B1:2E3EE:2304AE8:29914A1:5DD10111", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/81e498dd2bbd5c86d6438546481ce67e675d5544\"\n }\n}\n", "status": 200 }, { @@ -909,20 +751,20 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:40 GMT", + "Date": "Sun, 17 Nov 2019 08:13:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4668", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4726", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1c80b93e938233b53de969f9edee439f\"", + "ETag": "\"86d881c1e84b33143d1aa2bdfcfc56a2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -932,64 +774,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE6:9D21:175F08E:1C7A21C:5D77AC4C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B2:470C9:2281FC2:29001FE:5DD10111" }, - "response": "{\n \"sha\": \"82976a6de475d051a4819a4a72f8c983d062263f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f\"\n}\n", + "response": "{\n \"sha\": \"2756f809c7dba6082119d6a1dbaba8b3448fee1c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/454bad1fa90d83a669ff9f8a0245d71a5f0dd017?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4667", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0cf310e700d22b9a8428039549b150eb\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE8:244E4:B02074:D57251:5D77AC4D", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e83c2fbf688c719176b6a958a6e4d36b567d2c7e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e83c2fbf688c719176b6a958a6e4d36b567d2c7e\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"82976a6de475d051a4819a4a72f8c983d062263f\"}]}", + "body": "{\"base_tree\":\"81e498dd2bbd5c86d6438546481ce67e675d5544\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2756f809c7dba6082119d6a1dbaba8b3448fee1c\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:42 GMT", + "Date": "Sun, 17 Nov 2019 08:13:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4666", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4725", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f84e48cd87adfda33063948f8f88b32d\"", + "ETag": "\"e9c7c9869bef4d7dbab2d46ad2cd21d8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -999,31 +807,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEA:244E7:11C131C:15AB1FB:5D77AC4D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B7:23E1A:21BBE8C:280CEBA:5DD10112" }, - "response": "{\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\"parents\":[\"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"1b7e6f1308f562fca832589b61da35e99db9829d\",\"parents\":[\"81e498dd2bbd5c86d6438546481ce67e675d5544\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:42 GMT", + "Date": "Sun, 17 Nov 2019 08:13:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4665", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4724", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d4bd8b26090c75bdeabc5fbbbf654739\"", + "ETag": "\"57c610b0157f88402cb185760e9493df\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1033,27 +840,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEC:15110:18A84A7:1DF5D0E:5D77AC4E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B8:2E3F0:2FBE4DB:387BE88:5DD10113" }, - "response": "{\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OmUxYTlmNWMzOWVjZDdkNjA0MzM5YzdkMjU0MjRkZDk0MjFhY2VjMzE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:42Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:42Z\"\n },\n \"tree\": {\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOmE2ZGQyYmZmODViN2IzYzhhOWU1ODE0ZjYzMTRmMTA5MmJiOGQwMGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:07Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:07Z\"\n },\n \"tree\": {\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/81e498dd2bbd5c86d6438546481ce67e675d5544\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/81e498dd2bbd5c86d6438546481ce67e675d5544\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\"force\":false}", + "body": "{\"sha\":\"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Date": "Sun, 17 Nov 2019 08:13:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4664", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4723", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6109fb0d1e5a40e895e5a835ec9a094a\"", + "ETag": "W/\"1f31ff8c312f686b67435f0f744cb177\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1065,24 +871,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEE:3ED76:48E312:5957DE:5D77AC4F", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B9:23E1B:2E61D5C:36F7AD6:5DD10113", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Date": "Sun, 17 Nov 2019 08:13:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4663", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4722", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1094,9 +899,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF0:2B24:17F01D1:1D1A33B:5D77AC50", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C985:1341A56:16E3FA9:5DD10115", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1105,18 +909,18 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Date": "Sun, 17 Nov 2019 08:13:09 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4662", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 13:59:37 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:13:03 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1128,8 +932,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF2:2B19:AA7979:CF8353:5D77AC50", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BA:8072:2DF790A:3694D20:5DD10115" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1138,17 +941,17 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:46 GMT", + "Date": "Sun, 17 Nov 2019 08:13:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4661", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4720", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5a60a37248662afb8e8e233129d37d40\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"dc17351746106bd9de32957079351b0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1161,24 +964,55 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF6:1510F:124F818:163994F:5D77AC51", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C0:470C9:2282512:2900846:5DD10115", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:13:10 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4719", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:13:03 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18C1:2E3F0:2FBE9D0:387C478:5DD10116" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:46 GMT", + "Date": "Sun, 17 Nov 2019 08:13:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4660", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1190,62 +1024,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFB:3ED82:18A3616:1DFA513:5D77AC52", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C3:2E3ED:1383DD7:174AB96:5DD10116", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:46 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4659", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 13:59:37 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF8:B4E0:16DCF7A:1BD44C3:5D77AC52", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", - "status": 200 - }, { "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"base\":\"master\"}", "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:48 GMT", + "Date": "Sun, 17 Nov 2019 08:13:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22245", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4658", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"23fd6533ad899521ba2e9045d8df4b11\"", + "ETag": "\"7a3bc9aa3d24c3dfe8c07eb45af36bad\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/6", @@ -1258,27 +1058,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFD:9D20:116E20A:1550EFA:5D77AC53", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C4:470C9:2282719:2900A97:5DD10117" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 316009752,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA5NzUy\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:59:47Z\",\n \"updated_at\": \"2019-09-10T13:59:47Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:44Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831073,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMDcz\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:13:12Z\",\n \"updated_at\": \"2019-11-17T08:13:12Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:08Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:12:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:48 GMT", + "Date": "Sun, 17 Nov 2019 08:13:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4657", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6109fb0d1e5a40e895e5a835ec9a094a\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "ETag": "W/\"1f31ff8c312f686b67435f0f744cb177\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1291,32 +1090,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFE:3ED7B:1282223:167BC78:5D77AC54", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BA:8070:22BC6B1:29411E0:5DD10119", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6ImQ3OWI1NmNlNzNmZmIzM2MzNTE5OGU0NDhmMzRjNWUyOTNjOWFlMTQiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc1NzQwNDksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzFOelF3TkRrPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjMwWiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTBUMTM6NTk6NDRaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjI3MmZiOGUxOTVmZmViYjdmYWZhNzE5ZGZhMzBiMmZmMDhhNWU1NzUiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMjIyMTY2MzAsIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1qSXlNVFkyTXpBPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAwWiIsInVwZGF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAyWiIsInB1c2hlZF9hdCI6IjIwMTktMTEtMTdUMDg6MTM6MDhaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:49 GMT", + "Date": "Sun, 17 Nov 2019 08:13:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4656", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"09a01a6be1e90b8e2d29f335221eecfc\"", + "ETag": "\"25cb888e8ecd92893713bc24a22c8298\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/587ac739498c4b030389b1d02adb4e5c60bbfb83", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/fea72d24846bce2b18b58233d6156e4c77e12e4b", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1326,64 +1124,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B00:1510D:479278:57C65D:5D77AC55", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C8:1C993:2D37205:35A48F5:5DD10119" }, - "response": "{\n \"sha\": \"587ac739498c4b030389b1d02adb4e5c60bbfb83\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/587ac739498c4b030389b1d02adb4e5c60bbfb83\"\n}\n", + "response": "{\n \"sha\": \"fea72d24846bce2b18b58233d6156e4c77e12e4b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/fea72d24846bce2b18b58233d6156e4c77e12e4b\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/e1a9f5c39ecd7d604339c7d25424dd9421acec31?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4655", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"158f23c6f3fda3aff8c4028748b02789\"", - "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B02:2B1F:12437F7:164AAFC:5D77AC55", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"587ac739498c4b030389b1d02adb4e5c60bbfb83\"}]}", + "body": "{\"base_tree\":\"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"fea72d24846bce2b18b58233d6156e4c77e12e4b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:50 GMT", + "Date": "Sun, 17 Nov 2019 08:13:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4654", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"34cc19634142e46d87c3fee571fbb78c\"", + "ETag": "\"286657197ea7b9151228ee8b10fc10b9\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77506577adf240e8feed2e5cf9b5806ed8af6b4f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1393,31 +1157,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B04:15110:18A91AE:1DF6D1F:5D77AC56", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C9:34218:2F22C28:37D7019:5DD1011A" }, - "response": "{\n \"sha\": \"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ebcb62b2261c0bdbfe45d203096f14fbbf320e7c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ebcb62b2261c0bdbfe45d203096f14fbbf320e7c\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"77506577adf240e8feed2e5cf9b5806ed8af6b4f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77506577adf240e8feed2e5cf9b5806ed8af6b4f\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"87f560c486851eb87fcb572a3920075027d2ab37\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/87f560c486851eb87fcb572a3920075027d2ab37\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\"parents\":[\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"77506577adf240e8feed2e5cf9b5806ed8af6b4f\",\"parents\":[\"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:51 GMT", + "Date": "Sun, 17 Nov 2019 08:13:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4653", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e6dbc44b0ed649e010966b8ecd7bfc97\"", + "ETag": "\"fb455029cf69210e3d5acbe3deffcb94\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/b75b4456214543c5e07b181ffc7125876c002a34", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1427,27 +1190,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B06:B4DC:ACD432:D24416:5D77AC57", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C98C:236B289:29EA9D7:5DD1011B" }, - "response": "{\n \"sha\": \"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjA1OTViNjdjY2M1NWE3YjViZDBiY2VkNWZhYTcyZWMxNGRiZWFiZTE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:51Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:51Z\"\n },\n \"tree\": {\n \"sha\": \"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"b75b4456214543c5e07b181ffc7125876c002a34\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOmI3NWI0NDU2MjE0NTQzYzVlMDdiMTgxZmZjNzEyNTg3NmMwMDJhMzQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/b75b4456214543c5e07b181ffc7125876c002a34\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/b75b4456214543c5e07b181ffc7125876c002a34\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:15Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:13:15Z\"\n },\n \"tree\": {\n \"sha\": \"77506577adf240e8feed2e5cf9b5806ed8af6b4f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77506577adf240e8feed2e5cf9b5806ed8af6b4f\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a6dd2bff85b7b3c8a9e5814f6314f1092bb8d00e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\"force\":false}", + "body": "{\"sha\":\"b75b4456214543c5e07b181ffc7125876c002a34\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:52 GMT", + "Date": "Sun, 17 Nov 2019 08:13:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4652", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4712", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"afe37cf2706f6d3322f246638e644cdc\"", + "ETag": "W/\"5b37764a71884ed3e6c2d8661fac565e\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1459,11 +1221,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B08:9D1F:A40526:C82835:5D77AC58", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CA:2E3EE:23056E3:299228D:5DD1011C", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"b75b4456214543c5e07b181ffc7125876c002a34\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/b75b4456214543c5e07b181ffc7125876c002a34\"\n }\n}\n", "status": 200 }, { @@ -1471,16 +1232,16 @@ "method": "PATCH", "url": "/repos/owner/repo/pulls/6?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:54 GMT", + "Date": "Sun, 17 Nov 2019 08:13:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4651", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4711", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"458ad1f13a1d0de571a2d7f708b6e083\"", + "ETag": "W/\"c745bb3c51901b4fe1a9cb5dbd76c4fb\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1492,56 +1253,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0A:3ED77:ACB2D6:D15DED:5D77AC59", - "content-length": "22302", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CB:34217:232959A:29C8207:5DD1011D", + "content-length": "22302" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 316009752,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA5NzUy\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:59:47Z\",\n \"updated_at\": \"2019-09-10T13:59:54Z\",\n \"closed_at\": \"2019-09-10T13:59:54Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"350f509156b304a50b04def4b13505aa2b042a57\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:52Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14/status?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 13:59:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4650", - "X-RateLimit-Reset": "1568127500", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"251f87df2cd2f36b8437edafd0cd28ea\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0E:2B24:17F1482:1D1BA4C:5D77AC5B", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14/status\"\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831073,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMDcz\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:13:12Z\",\n \"updated_at\": \"2019-11-17T08:13:17Z\",\n \"closed_at\": \"2019-11-17T08:13:17Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"d320f77471dcdb9147458cb0a0dcefc61f3fdbdd\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:16Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/forkOwner/repo/git/refs/heads/cms%2FforkOwner%2Frepo%2Fposts%2F1970-01-01-first-title?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 13:59:55 GMT", - "Content-Type": "application/octet-stream", + "Date": "Sun, 17 Nov 2019 08:13:19 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4649", - "X-RateLimit-Reset": "1568127500", + "X-RateLimit-Remaining": "4710", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1554,11 +1281,41 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7B0C:244EB:183107D:1D632DF:5D77AC5A", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CC:23E17:2867EF:30665B:5DD1011E", + "content-length": "0" }, "response": null, "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:13:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4709", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"32e5dabd85062d224b30ad653cdeac0b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18CD:8070:22BCDB4:2941A20:5DD1011F", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/272fb8e195ffebb7fafa719dfa30b2ff08a5e575/status\"\n}\n", + "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json index ef233996..93d8b71c 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:58 GMT", + "Date": "Sun, 17 Nov 2019 08:07:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4487", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4556", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E46:2CFE8:3EA4A6E:4B285B6:5DCBBA19", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EB:470C9:226D10A:28E7307:5DD0FFD3", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:58 GMT", + "Date": "Sun, 17 Nov 2019 08:07:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4486", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4555", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E49:BBFA:87EB6A3:A294CF1:5DCBBA1A", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EF:23E1B:2E45A90:36D62EF:5DD0FFD4", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -68,16 +66,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:59 GMT", + "Date": "Sun, 17 Nov 2019 08:07:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4485", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4554", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -90,9 +88,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4E:2CFED:90481ED:ABC4381:5DCBBA1A", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F0:34217:2314396:29AECCC:5DD0FFD4", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -101,17 +98,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:59 GMT", + "Date": "Sun, 17 Nov 2019 08:07:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4484", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4553", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"84282475114cbb035ec061064b2a8a29\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"da12c724064fc78f56c9117588fde231\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -123,61 +120,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4F:BBEA:9E4567:BE415F:5DCBBA1B", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F1:34218:2F07210:37B5E98:5DD0FFD5", + "content-length": "7296" }, - "response": "{\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:08:27Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:00 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4483", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0fdf5cd0f3854ddcb55c95a2b0effaaf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E56:450E4:897B49B:A3C475A:5DCBBA1C", - "content-length": "3484", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:07:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:00 GMT", + "Date": "Sun, 17 Nov 2019 08:07:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4482", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4552", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"86071b9029874793ef66b7f15d4a54e6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -189,30 +152,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E54:33B09:698DDDD:7E008DE:5DCBBA1B", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F2:23E1A:21A9D14:27F7063:5DD0FFD5", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:01 GMT", - "Content-Type": "text/plain; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:07:50 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4481", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4551", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "ETag": "W/\"2dfa0842502045aa73be369037322600\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -221,24 +184,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5C:BBF5:3C3FD46:48009F9:5DCBBA1C", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F3:470C9:226D32D:28E759E:5DD0FFD5", + "content-length": "3484" }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:01 GMT", + "Date": "Sun, 17 Nov 2019 08:07:50 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4479", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4550", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -253,56 +215,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5A:43EF8:8A0665B:A4607D4:5DCBBA1C", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F4:23E1B:2E45D93:36D666B:5DD0FFD6", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:01 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4478", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5E:2CFED:9048534:ABC47A4:5DCBBA1C", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:01 GMT", + "Date": "Sun, 17 Nov 2019 08:07:50 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4480", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4549", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", @@ -317,24 +246,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5D:450D5:3AE9B5C:46870E8:5DCBBA1C", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F9:1C993:2D1C459:358484A:5DD0FFD6", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:01 GMT", + "Date": "Sun, 17 Nov 2019 08:07:50 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4477", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4548", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18FC:34217:2314569:29AEEF5:5DD0FFD6", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:51 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4547", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -349,29 +308,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5B:33B0A:8A8CCDA:A545A5F:5DCBBA1C", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F5:34216:13167B1:16A0FDA:5DD0FFD6", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:04 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", + "Date": "Sun, 17 Nov 2019 08:07:51 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4476", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4546", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9cff8990f58fe3ee7133a2dfc885f9c11a310758\"", - "Last-Modified": "Wed, 13 Nov 2019 08:08:20 GMT", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -383,23 +339,55 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6B:3A595:3DF6EF5:4A1429E:5DCBBA20", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F6:34215:78A113:9070B5:5DD0FFD6", + "content-length": "2786" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:54 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "464", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4545", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7640731dd47a1d0d3ea540fd84e51275d90665a8\"", + "Last-Modified": "Sun, 17 Nov 2019 08:07:13 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18FE:1C985:13385AA:16D894B:5DD0FFD9" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"8744f666cc82564139b03a3b0eaac9b09db1dbd7\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"second title\",\"description\":\"second description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4475", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4544", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -411,9 +399,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E72:2CFED:9048D40:ABC513A:5DCBBA20", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FF:2E3F0:2FA4CE7:385D2DE:5DD0FFDA", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -422,13 +409,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4474", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4543", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -440,9 +427,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E70:43EF6:67751F9:7B824F0:5DCBBA20", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1900:34217:231490C:29AF34B:5DD0FFDA", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -451,13 +437,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4473", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4542", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -469,9 +455,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E73:2CFED:9048E51:ABC5282:5DCBBA21", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1901:34216:1316989:16A1210:5DD0FFDA", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -481,17 +466,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:06 GMT", + "Date": "Sun, 17 Nov 2019 08:07:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4472", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4541", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2322927891cae93acf08fdda52d363ea\"", + "ETag": "\"86d691e55fcb8e55fa00b8bed816c2b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -504,8 +489,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E77:33B0A:8A8D63D:A546582:5DCBBA21", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1902:470CB:2CCC5A3:3507ECF:5DD0FFDB" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -514,16 +498,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:06 GMT", + "Date": "Sun, 17 Nov 2019 08:07:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4471", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4540", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -535,196 +519,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7E:43EF6:677547B:7B827E4:5DCBBA22", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1903:34216:1316A02:16A12A9:5DD0FFDC", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4470", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"347da4c3e9e1d5b2c05447eb53a75caf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A596:659FD92:796201A:5DCBBA23", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4469", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e98a675f711752ab78ffbd2b2335f9c4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E84:2CFEA:66A7577:7A63CAC:5DCBBA23", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4468", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E85:3A597:8E35691:A90B421:5DCBBA24", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4467", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9f5e9fab5889373d1ac19193c49a67ea\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8A:2CFED:904954B:ABC5ADC:5DCBBA24", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4466", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8F:3A595:3DF7462:4A14901:5DCBBA25", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:10 GMT", + "Date": "Sun, 17 Nov 2019 08:07:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4465", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4539", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df03b9f2a5c710df199b70b4a0d6a3db\"", + "ETag": "\"512dcc4355a8a182499e0573be267a38\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -737,8 +553,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E90:43EEE:1D9F71E:236B8DF:5DCBBA26", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1904:23E1B:2E46655:36D70CF:5DD0FFDC" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -748,20 +563,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:11 GMT", + "Date": "Sun, 17 Nov 2019 08:07:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4464", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4538", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e7053f2546de248297903dd442f22abf\"", + "ETag": "\"aa84a89f0ba8c26dc9ba778d2f8ea8d9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/7449fac988578204d2b8ad477d151e659a7dd116", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -771,28 +586,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E95:2CFED:90499A3:ABC601A:5DCBBA27", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1905:470C9:226DA18:28E7DF2:5DD0FFDD" }, - "response": "{\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5Ojc0NDlmYWM5ODg1NzgyMDRkMmI4YWQ0NzdkMTUxZTY1OWE3ZGQxMTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"html_url\": \"https://github.com/owner/repo/commit/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:11Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:11Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OmMwMTVmY2I1NzQwNDNiMGM1YWEzMzhhMWNhMzMyZjRhZWM3YTNmNzY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"html_url\": \"https://github.com/owner/repo/commit/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:57Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"7449fac988578204d2b8ad477d151e659a7dd116\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:12 GMT", + "Date": "Sun, 17 Nov 2019 08:07:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4463", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4537", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"404310867bdddc26d49a5e78defc6f89\"", + "ETag": "\"11fc0d7a93931e5863bfb1e09a9fa957\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -805,10 +619,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9B:33B0A:8A8E08B:A5471D5:5DCBBA27", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1906:23E19:13EF603:1796FEA:5DD0FFDE" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7449fac988578204d2b8ad477d151e659a7dd116\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"\n }\n}\n", "status": 201 }, { @@ -816,17 +629,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:14 GMT", + "Date": "Sun, 17 Nov 2019 08:08:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4462", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4536", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d4d37201ee3d5acc9d0dca369da779d7\"", + "ETag": "\"55107fb844264884514652e57491a60e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/3", @@ -839,27 +652,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A597:8E35EA9:A90BDDA:5DCBBA28", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1907:8070:22A84DD:2929067:5DD0FFDF" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 340296975,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2OTc1\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:09:13Z\",\n \"updated_at\": \"2019-11-13T08:09:13Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:09:12Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:09:12Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7449fac988578204d2b8ad477d151e659a7dd116\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 341830768,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNzY4\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:07:59Z\",\n \"updated_at\": \"2019-11-17T08:07:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:07:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:07:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:15 GMT", + "Date": "Sun, 17 Nov 2019 08:08:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4461", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4535", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f1591a9aee1400b53c84889af8228329\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"2a6c91644783be65ce544cfdf91df883\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -872,32 +684,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA9:2CFEA:66A7DD0:7A64693:5DCBBA2A", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1908:34217:2314F5B:29AFAEC:5DD0FFE0", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0f5afda35f53bb5e691cb615fad36a51ef839cee\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51a427078669c1b2ea91920f96c92a1f2b942e76\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI3NDQ5ZmFjOTg4NTc4MjA0ZDJiOGFkNDc3ZDE1MWU2NTlhN2RkMTE2In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjMDE1ZmNiNTc0MDQzYjBjNWFhMzM4YTFjYTMzMmY0YWVjN2EzZjc2In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:15 GMT", + "Date": "Sun, 17 Nov 2019 08:08:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4460", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4534", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"81c45cb264b53184166012184d055859\"", + "ETag": "\"9c9ed2eacee0f9c269e40305c7767b33\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/f3d1c1160ab1456253a1e3a95a861832842ec6c0", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -907,64 +718,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EAA:3A597:8E3624D:A90C224:5DCBBA2B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1909:1C985:1338864:16D8CCA:5DD0FFE1" }, - "response": "{\n \"sha\": \"f3d1c1160ab1456253a1e3a95a861832842ec6c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f3d1c1160ab1456253a1e3a95a861832842ec6c0\"\n}\n", + "response": "{\n \"sha\": \"8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0f5afda35f53bb5e691cb615fad36a51ef839cee?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4459", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"940a5ce6dc7567225ec37bbb52042989\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EAE:BBF8:6926A96:7D6B675:5DCBBA2B", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9cff8990f58fe3ee7133a2dfc885f9c11a310758\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9cff8990f58fe3ee7133a2dfc885f9c11a310758\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f3d1c1160ab1456253a1e3a95a861832842ec6c0\"}]}", + "body": "{\"base_tree\":\"51a427078669c1b2ea91920f96c92a1f2b942e76\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:16 GMT", + "Date": "Sun, 17 Nov 2019 08:08:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4458", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4533", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bcacfc69433ce727625b7e29e6b2f10c\"", + "ETag": "\"bd0e0972a7399f178fc14f3f615ea67c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3", + "Location": "https://api.github.com/repos/owner/repo/git/trees/84a90336d6e74b83b576f8c27bfd34c28e877121", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -974,31 +751,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB3:BBFA:87ED756:A297405:5DCBBA2C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190A:470CB:2CCCD63:3508841:5DD0FFE2" }, - "response": "{\n \"sha\": \"1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"f3d1c1160ab1456253a1e3a95a861832842ec6c0\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f3d1c1160ab1456253a1e3a95a861832842ec6c0\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"84a90336d6e74b83b576f8c27bfd34c28e877121\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/84a90336d6e74b83b576f8c27bfd34c28e877121\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8eb3aa0483d07024ef69bd91e50a8f3e5dbd131f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3\",\"parents\":[\"0f5afda35f53bb5e691cb615fad36a51ef839cee\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"84a90336d6e74b83b576f8c27bfd34c28e877121\",\"parents\":[\"51a427078669c1b2ea91920f96c92a1f2b942e76\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:17 GMT", + "Date": "Sun, 17 Nov 2019 08:08:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4457", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4532", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"19a5ff36e2943ce4d7ac79b05729b1b7\"", + "ETag": "\"da6e1f6f2a634229d21f858a8d11d625\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/3d57d82218a2e877e07b75c5bce86b06435a4661", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c56d57f391eea659ea4b2a2276a67389e0643a10", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1008,27 +784,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB4:43EF3:3A44BF0:45D1C7E:5DCBBA2D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190C:34218:2F085BC:37B75FD:5DD0FFE2" }, - "response": "{\n \"sha\": \"3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjNkNTdkODIyMThhMmU4NzdlMDdiNzVjNWJjZTg2YjA2NDM1YTQ2NjE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"html_url\": \"https://github.com/owner/repo/commit/3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:17Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:17Z\"\n },\n \"tree\": {\n \"sha\": \"1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f447be97d08edcf3cede7d3e9ca4f5d40eb3fe3\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"html_url\": \"https://github.com/owner/repo/commit/0f5afda35f53bb5e691cb615fad36a51ef839cee\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OmM1NmQ1N2YzOTFlZWE2NTllYTRiMmEyMjc2YTY3Mzg5ZTA2NDNhMTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"html_url\": \"https://github.com/owner/repo/commit/c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:08:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:08:03Z\"\n },\n \"tree\": {\n \"sha\": \"84a90336d6e74b83b576f8c27bfd34c28e877121\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/84a90336d6e74b83b576f8c27bfd34c28e877121\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"html_url\": \"https://github.com/owner/repo/commit/51a427078669c1b2ea91920f96c92a1f2b942e76\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"3d57d82218a2e877e07b75c5bce86b06435a4661\",\"force\":false}", + "body": "{\"sha\":\"c56d57f391eea659ea4b2a2276a67389e0643a10\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:18 GMT", + "Date": "Sun, 17 Nov 2019 08:08:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4456", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4531", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f883423834c66c66e39cb4e141d14cc2\"", + "ETag": "W/\"fb33665d6c29762e3aa2a980addbcb20\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1040,58 +815,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBA:43EF6:6776449:7B83A94:5DCBBA2D", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3ED:13778B5:173C1C5:5DD0FFE3", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3d57d82218a2e877e07b75c5bce86b06435a4661\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c56d57f391eea659ea4b2a2276a67389e0643a10\"\n }\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4455", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBF:BBF5:3C40C7C:4801C55:5DCBBA2F", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:19 GMT", + "Date": "Sun, 17 Nov 2019 08:08:05 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4454", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4529", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:11 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:07:57 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1103,26 +848,53 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBE:BBF8:6926DBC:7D6BA57:5DCBBA2F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190F:8072:2DDF059:3677521:5DD0FFE5" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:20 GMT", + "Date": "Sun, 17 Nov 2019 08:08:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4530", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "190E:2E3EE:22F0486:297918A:5DD0FFE5", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:08:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4453", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4528", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d793d760fb028eaa36dd16e6c4a18cc9\"", + "ETag": "W/\"15aee63fa980b1564366bc1318524010\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1134,28 +906,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC4:3A596:65A0D43:79632D6:5DCBBA30", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1910:806E:1371DA9:1720378:5DD0FFE5", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:20 GMT", + "Date": "Sun, 17 Nov 2019 08:08:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4452", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4527", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"364f8bc4c579cc7c49baa695b47591d9\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"e73eb0415633b458292276773df6eba5\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1168,27 +939,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC5:2CFE8:3EA5EB5:4B29E00:5DCBBA30", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470CB:2CCD2D4:3508EC0:5DD0FFE5", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7449fac988578204d2b8ad477d151e659a7dd116\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:21 GMT", + "Date": "Sun, 17 Nov 2019 08:08:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4451", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4526", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c00201838a1b05c7649bb3677962fc39\"", + "ETag": "W/\"089e366fa0f6e9218d6a6f8c2846add7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1200,24 +970,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECA:33B0A:8A8EEC6:A5482EF:5DCBBA30", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34217:23156BF:29B03B0:5DD0FFE6", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 340296975,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2OTc1\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:09:13Z\",\n \"updated_at\": \"2019-11-13T08:09:13Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"e50db4ac733f0fc1309c0aa96be61b77226db0d8\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:09:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:09:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7449fac988578204d2b8ad477d151e659a7dd116\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 341830768,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNzY4\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:07:59Z\",\n \"updated_at\": \"2019-11-17T08:07:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"d4df251f8be9557bbdac83d89be425216eb2464f\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:08:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:08:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:21 GMT", + "Date": "Sun, 17 Nov 2019 08:08:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4450", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4525", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1229,9 +998,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED0:33B0A:8A8EFB6:A54840D:5DCBBA31", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1917:34218:2F08D57:37B7EFB:5DD0FFE7", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1240,18 +1008,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:21 GMT", + "Date": "Sun, 17 Nov 2019 08:08:07 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4449", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4524", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:11 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:07:57 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1263,8 +1031,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECF:3A595:3DF7F06:4A15579:5DCBBA31", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1916:2E3EE:22F06E5:297945F:5DD0FFE7" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1273,17 +1040,17 @@ "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:22 GMT", + "Date": "Sun, 17 Nov 2019 08:08:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4448", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4523", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f883423834c66c66e39cb4e141d14cc2\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"fb33665d6c29762e3aa2a980addbcb20\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1296,32 +1063,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED1:BBF8:6927111:7D6BE7F:5DCBBA32", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1918:2E3F0:2FA6040:385E9F6:5DD0FFE7", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3d57d82218a2e877e07b75c5bce86b06435a4661\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c56d57f391eea659ea4b2a2276a67389e0643a10\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI3NDQ5ZmFjOTg4NTc4MjA0ZDJiOGFkNDc3ZDE1MWU2NTlhN2RkMTE2In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjMDE1ZmNiNTc0MDQzYjBjNWFhMzM4YTFjYTMzMmY0YWVjN2EzZjc2In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:23 GMT", + "Date": "Sun, 17 Nov 2019 08:08:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4447", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4522", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"51a2f4ba020ac1767ea230b295e509be\"", + "ETag": "\"3e0b0bdf7c0b5b3f2a67fc7c07ee7aca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/18ae4181b0cd32ccb706417a8d2bed917a39315b", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1331,64 +1097,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED6:43EF8:8A08B56:A46341E:5DCBBA32", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1919:8072:2DDF600:3677BBB:5DD0FFE8" }, - "response": "{\n \"sha\": \"4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\"\n}\n", + "response": "{\n \"sha\": \"18ae4181b0cd32ccb706417a8d2bed917a39315b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/18ae4181b0cd32ccb706417a8d2bed917a39315b\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/3d57d82218a2e877e07b75c5bce86b06435a4661?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4446", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5d33f85aa9f607c1e4a2dd78a54d69e9\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDB:33B06:8B7421:A83A87:5DCBBA33", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"f3d1c1160ab1456253a1e3a95a861832842ec6c0\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f3d1c1160ab1456253a1e3a95a861832842ec6c0\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"3d57d82218a2e877e07b75c5bce86b06435a4661\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\"}]}", + "body": "{\"base_tree\":\"c56d57f391eea659ea4b2a2276a67389e0643a10\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"18ae4181b0cd32ccb706417a8d2bed917a39315b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:24 GMT", + "Date": "Sun, 17 Nov 2019 08:08:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4445", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4521", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"63671897f3cfa2c2f252d0797b233529\"", + "ETag": "\"3ebac6137851ff74e4cc3e499cfdd56d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/59274326b05e9df5bb5856f4111e055d7a134377", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ece352a38f3818c617c34e2cd1e2f386642ba22e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1398,31 +1130,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDC:43EF8:8A08DBC:A4636F1:5DCBBA34", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191A:23E18:742079:8AFA7B:5DD0FFE9" }, - "response": "{\n \"sha\": \"59274326b05e9df5bb5856f4111e055d7a134377\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/59274326b05e9df5bb5856f4111e055d7a134377\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"ece352a38f3818c617c34e2cd1e2f386642ba22e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ece352a38f3818c617c34e2cd1e2f386642ba22e\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"18ae4181b0cd32ccb706417a8d2bed917a39315b\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/18ae4181b0cd32ccb706417a8d2bed917a39315b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"59274326b05e9df5bb5856f4111e055d7a134377\",\"parents\":[\"3d57d82218a2e877e07b75c5bce86b06435a4661\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ece352a38f3818c617c34e2cd1e2f386642ba22e\",\"parents\":[\"c56d57f391eea659ea4b2a2276a67389e0643a10\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:25 GMT", + "Date": "Sun, 17 Nov 2019 08:08:10 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4444", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4520", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fb64f27b0038b1340ec360a5ee606a03\"", + "ETag": "\"7b936ddf946399c55d08ab2a515f0a07\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/18d3e27b0158968726a99d594c4b58224b4f3a0d", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3fdc23d7e47356cb190016dcfaf6c69273ad461a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1432,26 +1163,57 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE2:2CFE8:3EA61A1:4B2A18C:5DCBBA34", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191B:470C7:14BAA66:1870FB6:5DD0FFE9" }, - "response": "{\n \"sha\": \"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjE4ZDNlMjdiMDE1ODk2ODcyNmE5OWQ1OTRjNGI1ODIyNGI0ZjNhMGQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"html_url\": \"https://github.com/owner/repo/commit/18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:09:25Z\"\n },\n \"tree\": {\n \"sha\": \"59274326b05e9df5bb5856f4111e055d7a134377\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/59274326b05e9df5bb5856f4111e055d7a134377\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3d57d82218a2e877e07b75c5bce86b06435a4661\",\n \"html_url\": \"https://github.com/owner/repo/commit/3d57d82218a2e877e07b75c5bce86b06435a4661\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjNmZGMyM2Q3ZTQ3MzU2Y2IxOTAwMTZkY2ZhZjZjNjkyNzNhZDQ2MWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"html_url\": \"https://github.com/owner/repo/commit/3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:08:10Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:08:10Z\"\n },\n \"tree\": {\n \"sha\": \"ece352a38f3818c617c34e2cd1e2f386642ba22e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ece352a38f3818c617c34e2cd1e2f386642ba22e\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c56d57f391eea659ea4b2a2276a67389e0643a10\",\n \"html_url\": \"https://github.com/owner/repo/commit/c56d57f391eea659ea4b2a2276a67389e0643a10\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status?ts=300", + "body": "{\"sha\":\"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:26 GMT", + "Date": "Sun, 17 Nov 2019 08:08:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4443", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4519", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d793d760fb028eaa36dd16e6c4a18cc9\"", + "ETag": "W/\"94b14b44856ee814630e0206c7c1588d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "191C:2E3ED:1377CCF:173C6A0:5DD0FFEA", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3fdc23d7e47356cb190016dcfaf6c69273ad461a\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:08:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4518", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"15aee63fa980b1564366bc1318524010\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1463,61 +1225,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE9:450D1:214A10:299C8E:5DCBBA35", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191D:1C993:2D1E30E:3586CA1:5DD0FFEB", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status\"\n}\n", "status": 200 }, { - "body": "{\"sha\":\"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:09:26 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4442", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1261ad4964f2625bc4a2f332e27a2185\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEA:43EF3:3A45378:45D256B:5DCBBA35", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18d3e27b0158968726a99d594c4b58224b4f3a0d\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"7449fac988578204d2b8ad477d151e659a7dd116\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\"merge_method\":\"merge\"}", "method": "PUT", "url": "/repos/owner/repo/pulls/3/merge?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:28 GMT", + "Date": "Sun, 17 Nov 2019 08:08:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4441", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4517", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2bfa88b5b316c220dfb3d7fb46f21dfc\"", + "ETag": "W/\"901537ccbc43677d49cfde9eeed500aa\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1529,23 +1257,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF0:BBE6:29AA65:33A907:5DCBBA37", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191E:2E3ED:1377D77:173C76E:5DD0FFEB", + "content-length": "123" }, - "response": "{\n \"sha\": \"c8380b644e4980ac7d426679671750705dcaf891\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"5700a5f768ce6aaffdbe6e882cdd70f5caf16df9\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:29 GMT", + "Date": "Sun, 17 Nov 2019 08:08:14 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4440", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4516", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1558,9 +1285,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2EF9:BBFA:87EEB60:A298C1D:5DCBBA39", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191F:2E3EE:22F0E5C:2979D29:5DD0FFED", + "content-length": "0" }, "response": null, "status": 204 @@ -1569,18 +1295,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:30 GMT", + "Date": "Sun, 17 Nov 2019 08:08:15 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4439", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4514", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:27 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:08:12 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1592,26 +1318,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EFE:450E4:897E3EA:A3C80B0:5DCBBA3A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1920:8070:22A961A:292A4FA:5DD0FFEE" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status?ts=300", + "url": "/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:09:31 GMT", + "Date": "Sun, 17 Nov 2019 08:08:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4436", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4512", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d793d760fb028eaa36dd16e6c4a18cc9\"", + "ETag": "W/\"15aee63fa980b1564366bc1318524010\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1623,11 +1348,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F05:BBFA:87EEEB4:A299031:5DCBBA3B", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1926:8072:2DE020D:3678A23:5DD0FFF0", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7449fac988578204d2b8ad477d151e659a7dd116\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7449fac988578204d2b8ad477d151e659a7dd116/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c015fcb574043b0c5aa338a1ca332f4aec7a3f76/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json index b2a317d8..2a056f70 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:26 GMT", + "Date": "Sun, 17 Nov 2019 08:14:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4927", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4704", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD6:15110:2B8C0CA:35051A5:5D7892A2", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DD:23E1A:21BEF0F:281084D:5DD10149", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:27 GMT", + "Date": "Sun, 17 Nov 2019 08:14:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4926", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4703", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -54,57 +53,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD8:244E7:1F4878B:264586C:5D7892A3", - "content-length": "185", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E0:806E:137E8A0:172F62E:5DD1014C", + "content-length": "185" }, "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", "status": 403 }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4925", - "X-RateLimit-Reset": "1568186244", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDA:15110:2B8C236:3505357:5D7892A3", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, { "method": "GET", "url": "/repos/forkOwner/repo", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:29 GMT", + "Date": "Sun, 17 Nov 2019 08:14:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4924", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4702", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9afbc1770dd81dd2d3db8a5a5a41a74e\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:18 GMT", + "ETag": "W/\"ae38454f3801bf4ea2ad230f1fbeadad\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -116,28 +85,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDC:15110:2B8C395:3505508:5D7892A4", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E1:1C985:134357C:16E6036:5DD1014D", + "content-length": "22145" }, - "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { - "method": "GET", - "url": "/user?ts=0", + "method": "POST", + "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:29 GMT", + "Date": "Sun, 17 Nov 2019 08:14:06 GMT", "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", "Server": "GitHub.com", - "Status": "200 OK", + "Status": "202 Accepted", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4923", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", - "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-RateLimit-Remaining": "4701", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -149,9 +114,71 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDF:3ED7B:2092349:27A8319:5D7892A5", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E2:23E1B:2E66BFC:36FD7C9:5DD1014D" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 08:14:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4700", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ae38454f3801bf4ea2ad230f1fbeadad\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18E3:34216:1322B20:16AFAD0:5DD1014E", + "content-length": "22145" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:14:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4699", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18E4:8072:2DFBF61:369A1A2:5DD1014F", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 @@ -160,17 +187,17 @@ "method": "GET", "url": "/repos/forkOwner/repo?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:30 GMT", + "Date": "Sun, 17 Nov 2019 08:14:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4922", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4698", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"91e40058fb77d78ece6f694a3e335d18\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "ETag": "W/\"ae38454f3801bf4ea2ad230f1fbeadad\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -182,28 +209,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE0:B4E0:287DD62:3160190:5D7892A6", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E6:34217:232C76C:29CBD18:5DD1014F", + "content-length": "22145" }, - "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:13:19Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:32 GMT", + "Date": "Sun, 17 Nov 2019 08:14:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4921", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4697", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:18 GMT", + "ETag": "W/\"79ec3ea98319636cf9a6f7ef89f24fc2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -215,28 +241,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEA:2B24:2A13285:334E6CE:5D7892A7", - "content-length": "7422", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EB:470BF:B2902:E0643:5DD10150", + "content-length": "3539" }, - "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:33 GMT", + "Date": "Sun, 17 Nov 2019 08:14:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4920", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4696", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "ETag": "W/\"d032b56a5fb3e33af271cf38040cab72\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -248,27 +273,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF9:2B1F:2007E0B:2738BDF:5D7892A9", - "content-length": "12712", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EA:470CB:2CE739E:3528870:5DD10150", + "content-length": "2030" }, - "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:34 GMT", + "Date": "Sun, 17 Nov 2019 08:14:09 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4919", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4695", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "ETag": "W/\"bd8cecd81fe43295f14669cfe90d86c5\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -280,9 +304,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1E:244EB:2A71FAA:33B6B41:5D7892A9", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F0:34216:1322CAE:16AFCA2:5DD10151", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -291,16 +314,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:34 GMT", + "Date": "Sun, 17 Nov 2019 08:14:09 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4918", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4694", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -312,9 +335,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1C:9D21:290784A:3225120:5D7892A9", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18ED:23E18:7486B8:8B70A8:5DD10151", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -323,16 +345,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:35 GMT", + "Date": "Sun, 17 Nov 2019 08:14:09 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4917", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4692", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -344,9 +366,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2E:244E7:1F48EA6:264611D:5D7892AB", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EE:806E:137EB63:172F97E:5DD10151", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -355,16 +376,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:36 GMT", + "Date": "Sun, 17 Nov 2019 08:14:09 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4916", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4693", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -376,9 +397,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2A:B4DC:1309BEF:172E734:5D7892AB", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F1:34217:232C915:29CBF0F:5DD10151", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 @@ -387,16 +407,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:36 GMT", + "Date": "Sun, 17 Nov 2019 08:14:09 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4915", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4691", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -408,9 +428,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A2C:3ED77:12BD3C5:16CCF74:5D7892AB", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EF:23E1A:21BF619:281117C:5DD10151", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 @@ -419,13 +438,18 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:39 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:14:13 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "8685", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4914", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4690", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fea72d24846bce2b18b58233d6156e4c77e12e4b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:13:15 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -437,24 +461,50 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A32:9D20:1EE138C:25D1DA0:5D7892AF", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FD:34218:2F26F36:37DC1BA:5DD10154" }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":6,\"head\":{\"label\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"ref\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"272fb8e195ffebb7fafa719dfa30b2ff08a5e575\",\"user\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":222216630,\"node_id\":\"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\"name\":\"repo\",\"full_name\":\"forkOwner/repo\",\"private\":false,\"owner\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/forkOwner/repo\",\"description\":null,\"fork\":true,\"url\":\"https://api.github.com/repos/forkOwner/repo\",\"forks_url\":\"https://api.github.com/repos/forkOwner/repo/forks\",\"keys_url\":\"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/forkOwner/repo/teams\",\"hooks_url\":\"https://api.github.com/repos/forkOwner/repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/forkOwner/repo/events\",\"assignees_url\":\"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/forkOwner/repo/tags\",\"blobs_url\":\"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/forkOwner/repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/forkOwner/repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/forkOwner/repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/forkOwner/repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/forkOwner/repo/subscription\",\"commits_url\":\"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/forkOwner/repo/merges\",\"archive_url\":\"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/forkOwner/repo/downloads\",\"issues_url\":\"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/forkOwner/repo/deployments\",\"created_at\":\"2019-11-17T08:09:00Z\",\"updated_at\":\"2019-11-17T08:09:02Z\",\"pushed_at\":\"2019-11-17T08:13:08Z\",\"git_url\":\"git://github.com/forkOwner/repo.git\",\"ssh_url\":\"git@github.com:forkOwner/repo.git\",\"clone_url\":\"https://github.com/forkOwner/repo.git\",\"svn_url\":\"https://github.com/forkOwner/repo\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"mit\",\"name\":\"MIT License\",\"spdx_id\":\"MIT\",\"url\":\"https://api.github.com/licenses/mit\",\"node_id\":\"MDc6TGljZW5zZTEz\"},\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:14:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4689", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1900:34218:2F26FEC:37DC28E:5DD10155", + "content-length": "218" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:40 GMT", + "Date": "Sun, 17 Nov 2019 08:14:13 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4913", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4688", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -466,9 +516,36 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A34:B4DA:911244:B142B2:5D7892B0", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1901:34216:1322F38:16AFF9C:5DD10155", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:14:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4687", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1907:806E:137EE0F:172FCBA:5DD10155", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -478,17 +555,17 @@ "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:41 GMT", + "Date": "Sun, 17 Nov 2019 08:14:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4912", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4686", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c35fe4d558a23f5048b86182bc9941e3\"", + "ETag": "\"abfcfad3154cfd4c78ec1f6a50eda1d2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -501,8 +578,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A37:244DB:BA73C:E8DF1:5D7892B0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1909:1C98C:236F0EB:29EF313:5DD10156" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -511,16 +587,16 @@ "method": "GET", "url": "/repos/forkOwner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:41 GMT", + "Date": "Sun, 17 Nov 2019 08:14:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4911", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4685", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"72ec4912491eeff1eba6811aff86bb08\"", + "ETag": "W/\"db89b525660a4602547c725767b2c840\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -532,199 +608,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A38:2B15:87906B:A51F2B:5D7892B1", - "content-length": "6021", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3ED:1386357:174D7E7:5DD10156", + "content-length": "5429" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:42 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4910", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"395733f4c42dea1d51409ca01e892db1\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3B:1510F:1FC079A:26BC7B9:5D7892B2", - "content-length": "11959", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4909", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b165455575c236b0d38e9f56a36c76d1\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3C:244E4:130F912:172E7A4:5D7892B2", - "content-length": "846", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4908", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"76d99060c6645e9fc8243a0907c45709\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A3E:B4E0:287EAFB:3161288:5D7892B3", - "content-length": "2060", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2397", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4907", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"54984c9dad8dbfe25a2918b16ba0972e\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A40:9D1D:2AAF3E:347742:5D7892B4", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:45 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "846", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4906", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3d55dae10b9eff9e9b68b320f1fdf9b2\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A42:3ED82:2B94EBA:351E376:5D7892B4", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:46 GMT", + "Date": "Sun, 17 Nov 2019 08:14:16 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11959", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4905", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4684", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5bfc279452798da7d0e6f17c525fc616\"", + "ETag": "\"e90246fdfc414332230b6a1534748737\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -734,31 +642,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A44:244EB:2A72D50:33B7C09:5D7892B5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190F:8070:22C09F9:29460E8:5DD10157" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:46 GMT", + "Date": "Sun, 17 Nov 2019 08:14:16 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1565", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4904", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4683", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cec85bc09d22dfdcd1567af4cef652cd\"", + "ETag": "\"7e5bbf586a2ac588a9384710ea90920b\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/7d5d160803dd7769695f8ed0880aa94e57187c49", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -768,28 +675,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A47:3ED7B:20930C5:27A942D:5D7892B6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1910:806C:884ECB:A21441:5DD10158" }, - "response": "{\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjA=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:46Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:46Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjdkNWQxNjA4MDNkZDc3Njk2OTVmOGVkMDg4MGFhOTRlNTcxODdjNDk=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:16Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:16Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"18d2d7d41695915de543b3f48bfab502fab19bf0\"}", + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"7d5d160803dd7769695f8ed0880aa94e57187c49\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:48 GMT", + "Date": "Sun, 17 Nov 2019 08:14:17 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "764", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4903", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4682", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"66ff76e4c2a959e11c7565465b0b36af\"", + "ETag": "\"9899f8e9ab0a61317472bb7d0c0c45ca\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", @@ -802,23 +708,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A48:244EB:2A72F19:33B7E39:5D7892B7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470C5:877D6B:A0FE8D:5DD10158" }, - "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI5MTA2NzUtMDQ5Y2hjYWhuazgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:48 GMT", + "Date": "Sun, 17 Nov 2019 08:14:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4902", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4681", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5b37764a71884ed3e6c2d8661fac565e\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -831,168 +740,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A4B:244E7:1F49952:2646E67:5D7892B8", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34217:232D2BF:29CCA9A:5DD10159", + "content-length": "494" }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", - "status": 404 - }, - { - "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:49 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "212", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4901", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"afd292a8566185b19e67de2312189331\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A4C:B4E0:287F05A:3161938:5D7892B8", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", - "status": 201 - }, - { - "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "571", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4900", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"700c2cbb5e385fbdd2d4e2b5cac79020\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A4E:2B24:2A147D8:33500CE:5D7892B9", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1156", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4899", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5b8c0151be98d48af259c76949a1a859\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A50:2B1F:2008FEF:273A184:5D7892BA", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmFkN2UyZGQyNTJlZDNkZTMxNzUyZjFiYjM0YzQ5YTFmNzg3NTVlNWY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:51Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:51Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"}", - "method": "POST", - "url": "/repos/forkOwner/repo/git/refs?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "494", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4898", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"14328fbcaafd13e3204fd4cf8901d91f\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A52:244E7:1F49C22:26471DC:5D7892BB", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"\n }\n}\n", - "status": 201 + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"b75b4456214543c5e07b181ffc7125876c002a34\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/b75b4456214543c5e07b181ffc7125876c002a34\"\n }\n}\n", + "status": 200 }, { "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:53 GMT", + "Date": "Sun, 17 Nov 2019 08:14:18 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4897", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4680", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"129ed66b431aa72caa004dcc2f08547c\"", + "ETag": "\"86d881c1e84b33143d1aa2bdfcfc56a2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a9364c816d3c010e6e66f1ce8468a3e30e1c997b", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1002,64 +774,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A56:244EB:2A734A6:33B8520:5D7892BC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C985:1343BEA:16E67E7:5DD1015A" }, - "response": "{\n \"sha\": \"a9364c816d3c010e6e66f1ce8468a3e30e1c997b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a9364c816d3c010e6e66f1ce8468a3e30e1c997b\"\n}\n", + "response": "{\n \"sha\": \"2756f809c7dba6082119d6a1dbaba8b3448fee1c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/2756f809c7dba6082119d6a1dbaba8b3448fee1c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:22:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4896", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2b2f673f5cbeb6f4938022f64a3ed964\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A58:244E4:130FE0B:172EDB8:5D7892BD", - "content-length": "571", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a9364c816d3c010e6e66f1ce8468a3e30e1c997b\"}]}", + "body": "{\"base_tree\":\"b75b4456214543c5e07b181ffc7125876c002a34\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2756f809c7dba6082119d6a1dbaba8b3448fee1c\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:54 GMT", + "Date": "Sun, 17 Nov 2019 08:14:19 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4895", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4679", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"87d8118c5e8f6c8263d89d013cd80a32\"", + "ETag": "\"e9c7c9869bef4d7dbab2d46ad2cd21d8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1069,31 +807,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5A:1510F:1FC1121:26BD395:5D7892BE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1914:34218:2F2775F:37DCB64:5DD1015B" }, - "response": "{\n \"sha\": \"350bb379615187df05784b8031570d5ae7f4f956\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ec085722968d6344a6ff634091bfdca14fe321b1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ec085722968d6344a6ff634091bfdca14fe321b1\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b374312e8de9fe0ecab2afc0cb62f724ed5d2e1d\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"350bb379615187df05784b8031570d5ae7f4f956\",\"parents\":[\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"1b7e6f1308f562fca832589b61da35e99db9829d\",\"parents\":[\"b75b4456214543c5e07b181ffc7125876c002a34\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:55 GMT", + "Date": "Sun, 17 Nov 2019 08:14:20 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4894", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4678", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"de71adf306e6f1c73092b5fb07259c58\"", + "ETag": "\"eb971c005a5e17b9c6840ba38e21bbac\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/49fdf95cb655162b3f4f176016925f9f4b19ccd9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1103,27 +840,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5C:1510F:1FC11A0:26BD42F:5D7892BF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1915:2E3F0:2FC480B:3883409:5DD1015B" }, - "response": "{\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmZmNmJiOWE2OTg3YmYzMDMyODViYjc2Mzk4YjFhYjgyMGJiMzIxMGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:55Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:55Z\"\n },\n \"tree\": {\n \"sha\": \"350bb379615187df05784b8031570d5ae7f4f956\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjQ5ZmRmOTVjYjY1NTE2MmIzZjRmMTc2MDE2OTI1ZjlmNGIxOWNjZDk=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:20Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:20Z\"\n },\n \"tree\": {\n \"sha\": \"1b7e6f1308f562fca832589b61da35e99db9829d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1b7e6f1308f562fca832589b61da35e99db9829d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"b75b4456214543c5e07b181ffc7125876c002a34\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/b75b4456214543c5e07b181ffc7125876c002a34\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/b75b4456214543c5e07b181ffc7125876c002a34\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\"force\":false}", + "body": "{\"sha\":\"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:56 GMT", + "Date": "Sun, 17 Nov 2019 08:14:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4893", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b897fe3020cf68808e8382136fa658ab\"", + "ETag": "W/\"19864c96720a2879a531cfbc068d9aa8\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1135,24 +871,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A5E:244E7:1F4A075:2647717:5D7892BF", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1916:2E3F0:2FC4913:3883552:5DD1015C", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/49fdf95cb655162b3f4f176016925f9f4b19ccd9\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:57 GMT", + "Date": "Sun, 17 Nov 2019 08:14:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4892", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4676", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1164,9 +899,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCC:9D1D:2AAFD1:3477FC:5D7892C1", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1917:34218:2F27A72:37DCF19:5DD1015D", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1175,18 +909,18 @@ "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Wed, 11 Sep 2019 06:22:57 GMT", + "Date": "Sun, 17 Nov 2019 08:14:22 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4891", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:46 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:14:16 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1198,8 +932,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCE:15110:2B8E569:3507E71:5D7892C1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1918:2E3F0:2FC4AC7:3883750:5DD1015D" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1208,17 +941,17 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:00 GMT", + "Date": "Sun, 17 Nov 2019 08:14:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4890", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4674", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"62b479143e2743d82e3fa88569a8988b\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "ETag": "W/\"a033673c94d88bff5533275f3fb9eae1\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1231,29 +964,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD2:244E4:13100A3:172F0F5:5D7892C3", - "content-length": "788", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1919:806A:25E0C4:2DE8C1:5DD1015E", + "content-length": "788" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI5MTA2NzUtMDQ5Y2hjYWhuazgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NzM5Nzc4ODMzNTYtb2c1YjhhbmNwYjgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:01 GMT", + "Date": "Sun, 17 Nov 2019 08:14:23 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4889", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4672", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:46 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:14:16 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1265,8 +997,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD4:15110:2B8E943:350830F:5D7892C4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191B:470C9:22876D6:29067FC:5DD1015F" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1275,13 +1006,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:01 GMT", + "Date": "Sun, 17 Nov 2019 08:14:23 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4888", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1293,9 +1024,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BD6:1510E:12D5556:170682D:5D7892C4", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191A:23E1A:21C02E8:28120AC:5DD1015F", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1305,20 +1035,20 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:04 GMT", + "Date": "Sun, 17 Nov 2019 08:14:25 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22245", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4887", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4671", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"65bed0e37e37e6019c22f920635834be\"", + "ETag": "\"40fb649a4fb1d118b4a2b240614c6f9f\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "Location": "https://api.github.com/repos/owner/repo/pulls/7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1328,27 +1058,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BDA:1510F:1FC1848:26BDC59:5D7892C6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191C:2E3ED:1386866:174DDE9:5DD1015F" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:03Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:22:56Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831145,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMTQ1\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:14:24Z\",\n \"updated_at\": \"2019-11-17T08:14:24Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:14:21Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:13:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:05 GMT", + "Date": "Sun, 17 Nov 2019 08:14:26 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4886", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4670", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b897fe3020cf68808e8382136fa658ab\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "ETag": "W/\"19864c96720a2879a531cfbc068d9aa8\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1361,32 +1090,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE2:244E7:1F4A8A6:2648126:5D7892C8", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191D:1C985:1343F0E:16E6B9F:5DD10161", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/49fdf95cb655162b3f4f176016925f9f4b19ccd9\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjAiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc3MzgyNzksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzNNemd5TnprPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI5WiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTFUMDY6MjI6NTZaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjdkNWQxNjA4MDNkZDc3Njk2OTVmOGVkMDg4MGFhOTRlNTcxODdjNDkiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMjIyMTY2MzAsIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1qSXlNVFkyTXpBPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAwWiIsInVwZGF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAyWiIsInB1c2hlZF9hdCI6IjIwMTktMTEtMTdUMDg6MTQ6MjFaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:05 GMT", + "Date": "Sun, 17 Nov 2019 08:14:26 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4885", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4669", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6e2ece69c474e557731e6f254bad7673\"", + "ETag": "\"148e4aaa21ef105ec3ec215839e8b133\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/1e818bf6a9f89cc1abbd5a840cdd69869719f92a", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/2b9e74edda98f27654bd3c0037211a2f90ec414c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1396,64 +1124,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE4:3ED77:12BE391:16CE2A1:5D7892C9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191E:2E3EE:230A4D7:2997D79:5DD10162" }, - "response": "{\n \"sha\": \"1e818bf6a9f89cc1abbd5a840cdd69869719f92a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/1e818bf6a9f89cc1abbd5a840cdd69869719f92a\"\n}\n", + "response": "{\n \"sha\": \"2b9e74edda98f27654bd3c0037211a2f90ec414c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/2b9e74edda98f27654bd3c0037211a2f90ec414c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/ff6bb9a6987bf303285bb76398b1ab820bb3210e?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:23:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4884", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b000e9de19055e62a14af1c7394509f0\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE7:244E7:1F4A9FF:26482C2:5D7892CA", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ec085722968d6344a6ff634091bfdca14fe321b1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ec085722968d6344a6ff634091bfdca14fe321b1\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1e818bf6a9f89cc1abbd5a840cdd69869719f92a\"}]}", + "body": "{\"base_tree\":\"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2b9e74edda98f27654bd3c0037211a2f90ec414c\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:07 GMT", + "Date": "Sun, 17 Nov 2019 08:14:27 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4883", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4668", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b53599955d513ad304ad0ad7dd4409e7\"", + "ETag": "\"36d7a2919093bfebb167105ddb3278ab\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/1cb22d475cdfbf101db67c84d01a769b1aacfa64", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1463,31 +1157,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE8:1510C:289E54:31E9DF:5D7892CA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191F:2E3F0:2FC51C8:3883F9C:5DD10163" }, - "response": "{\n \"sha\": \"530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"bae1ad3548d23fe8fb384249590c2ad9670d0253\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/bae1ad3548d23fe8fb384249590c2ad9670d0253\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1cb22d475cdfbf101db67c84d01a769b1aacfa64\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1cb22d475cdfbf101db67c84d01a769b1aacfa64\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f91b5d27a07560a3044f1b93ace4ecc484ff547f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f91b5d27a07560a3044f1b93ace4ecc484ff547f\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"530c29350340b26398223c8ea4c3639cbe2b317c\",\"parents\":[\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"1cb22d475cdfbf101db67c84d01a769b1aacfa64\",\"parents\":[\"49fdf95cb655162b3f4f176016925f9f4b19ccd9\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:08 GMT", + "Date": "Sun, 17 Nov 2019 08:14:28 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4882", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4667", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b6a3b584550c68680415b9eeae0bd56b\"", + "ETag": "\"5412005ae0321604ec01685c8f1659af\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/72f47dff2c77cfcc306ba4c330ba3dabe2bea975", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1497,27 +1190,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEA:2B24:2A15E16:3351BF3:5D7892CB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1920:806E:137F5B1:17305AC:5DD10163" }, - "response": "{\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmQ1ZTE5MTYzMDVkMGYzNTk3NzNlNjFmNTBmZDI0MWQ4NGE4NzU2YjU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:07Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:07Z\"\n },\n \"tree\": {\n \"sha\": \"530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjcyZjQ3ZGZmMmM3N2NmY2MzMDZiYTRjMzMwYmEzZGFiZTJiZWE5NzU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:28Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:28Z\"\n },\n \"tree\": {\n \"sha\": \"1cb22d475cdfbf101db67c84d01a769b1aacfa64\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1cb22d475cdfbf101db67c84d01a769b1aacfa64\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/49fdf95cb655162b3f4f176016925f9f4b19ccd9\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/49fdf95cb655162b3f4f176016925f9f4b19ccd9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"d5e1916305d0f359773e61f50fd241d84a8756b5\",\"force\":false}", + "body": "{\"sha\":\"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:09 GMT", + "Date": "Sun, 17 Nov 2019 08:14:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4881", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4666", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"98560fe70d6b020d14f75bf95e63ce4a\"", + "ETag": "W/\"8222c579b88c521d07de6044056345b3\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1529,28 +1221,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEC:9D21:290A17B:32283CF:5D7892CC", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1921:8072:2DFD938:369C0D5:5DD10164", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\"\n }\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/pulls/1%20%7D?ts=300", + "url": "/repos/owner/repo/pulls/7%20%7D?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:11 GMT", + "Date": "Sun, 17 Nov 2019 08:14:30 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4880", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4665", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e1c780c6b16d7e7e4801a78b068769fa\"", - "Last-Modified": "Wed, 11 Sep 2019 06:23:03 GMT", + "ETag": "W/\"b30de5eece681d2f3594af209ba40218\"", + "Last-Modified": "Sun, 17 Nov 2019 08:14:24 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1562,28 +1253,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF0:2B1F:200A776:273BD9D:5D7892CF", - "content-length": "22281", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1922:806E:137F6B1:17306D3:5DD10165", + "content-length": "22281" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:03Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:09Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831145,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMTQ1\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:14:24Z\",\n \"updated_at\": \"2019-11-17T08:14:24Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"c50601f65d6fe4a7609b5fdc10aa95709978f2c7\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:14:29Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:14:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 200 }, { "body": "{\"state\":\"closed\"}", "method": "PATCH", - "url": "/repos/owner/repo/pulls/1?ts=300", + "url": "/repos/owner/repo/pulls/7?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:12 GMT", + "Date": "Sun, 17 Nov 2019 08:14:31 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4879", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4664", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7210e9631c9847934052da85bc09ee90\"", + "ETag": "W/\"a3458663286c57750420f991e683ada2\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1595,28 +1285,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF2:15110:2B8FB69:35098C3:5D7892D0", - "content-length": "22302", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1924:8072:2DFDBD5:369C3EB:5DD10166", + "content-length": "22302" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:12Z\",\n \"closed_at\": \"2019-09-11T06:23:12Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:09Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831145,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMTQ1\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:14:24Z\",\n \"updated_at\": \"2019-11-17T08:14:31Z\",\n \"closed_at\": \"2019-11-17T08:14:31Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"c50601f65d6fe4a7609b5fdc10aa95709978f2c7\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:14:29Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:14:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:13 GMT", + "Date": "Sun, 17 Nov 2019 08:14:32 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4878", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"98560fe70d6b020d14f75bf95e63ce4a\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "ETag": "W/\"8222c579b88c521d07de6044056345b3\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1629,32 +1318,62 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF4:B4E0:2880E46:3163D99:5D7892D1", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1925:1C98C:2370582:29F0B0A:5DD10167", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjAiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc3MzgyNzksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzNNemd5TnprPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI5WiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTFUMDY6MjI6NTZaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "GET", + "url": "/repos/owner/repo/commits/7d5d160803dd7769695f8ed0880aa94e57187c49/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:14:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"461990a11f6e71be6989c00487970c07\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1926:8072:2DFDDB7:369C63D:5DD10168", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7d5d160803dd7769695f8ed0880aa94e57187c49/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjdkNWQxNjA4MDNkZDc3Njk2OTVmOGVkMDg4MGFhOTRlNTcxODdjNDkiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMjIyMTY2MzAsIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1qSXlNVFkyTXpBPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAwWiIsInVwZGF0ZWRfYXQiOiIyMDE5LTExLTE3VDA4OjA5OjAyWiIsInB1c2hlZF9hdCI6IjIwMTktMTEtMTdUMDg6MTQ6MjFaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/forkOwner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:14 GMT", + "Date": "Sun, 17 Nov 2019 08:14:33 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "212", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4877", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4661", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1e5b69f73dbf5c2acbe218861bf8b21a\"", + "ETag": "\"8e76607c40b37b87cad61811cac52fb1\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/cef5cb8c1932b2fc938e588d53e99e666571cd01", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1664,64 +1383,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF7:B4DE:1FC29C9:26C0B70:5D7892D1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34218:2F286FB:37DDE00:5DD10168" }, - "response": "{\n \"sha\": \"02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\"\n}\n", + "response": "{\n \"sha\": \"cef5cb8c1932b2fc938e588d53e99e666571cd01\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/cef5cb8c1932b2fc938e588d53e99e666571cd01\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/forkOwner/repo/git/trees/d5e1916305d0f359773e61f50fd241d84a8756b5?ts=300", - "headers": { - "Date": "Wed, 11 Sep 2019 06:23:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4876", - "X-RateLimit-Reset": "1568186244", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"761b56f7ebd9d9493a2889f9f23e552a\"", - "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFA:1510F:1FC2424:26BEAB0:5D7892D2", - "content-length": "878", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"bae1ad3548d23fe8fb384249590c2ad9670d0253\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/bae1ad3548d23fe8fb384249590c2ad9670d0253\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"d5e1916305d0f359773e61f50fd241d84a8756b5\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\"}]}", + "body": "{\"base_tree\":\"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"cef5cb8c1932b2fc938e588d53e99e666571cd01\"}]}", "method": "POST", "url": "/repos/forkOwner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:15 GMT", + "Date": "Sun, 17 Nov 2019 08:14:33 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "878", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4875", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4660", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f346faf8fe8b8a11f3a19eebf95b21ce\"", + "ETag": "\"e9d9944215540e01630ef831f030dbeb\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7cf291b2f7c2551d3f258fed4fa143ce4c85e02a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1731,31 +1416,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFB:1510D:7DC36C:9A41CF:5D7892D3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192A:34218:2F287D4:37DDF3F:5DD10169" }, - "response": "{\n \"sha\": \"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f225a3c576d956faba8e02cd7cf88d9ced06bdbb\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f225a3c576d956faba8e02cd7cf88d9ced06bdbb\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7cf291b2f7c2551d3f258fed4fa143ce4c85e02a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7cf291b2f7c2551d3f258fed4fa143ce4c85e02a\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"efadce1231f37e6441f3c1fa816bfcd6d254b862\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/efadce1231f37e6441f3c1fa816bfcd6d254b862\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\"parents\":[\"d5e1916305d0f359773e61f50fd241d84a8756b5\"]}", + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"7cf291b2f7c2551d3f258fed4fa143ce4c85e02a\",\"parents\":[\"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\"]}", "method": "POST", "url": "/repos/forkOwner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:16 GMT", + "Date": "Sun, 17 Nov 2019 08:14:34 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1641", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4874", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c677ccbe6bdfd74373519c2e10c27b35\"", + "ETag": "\"ab0720692ada8098c36f5d87dd4dba14\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/71f455d4e8fb8258ca39129cee985345e739e2b2", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1765,27 +1449,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFD:B4DA:911B85:B14DDF:5D7892D3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192B:1C985:1344318:16E707F:5DD1016A" }, - "response": "{\n \"sha\": \"99e53baa6c6996a241aa736806788ce76523551e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5Ojk5ZTUzYmFhNmM2OTk2YTI0MWFhNzM2ODA2Nzg4Y2U3NjUyMzU1MWU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/99e53baa6c6996a241aa736806788ce76523551e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:16Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:16Z\"\n },\n \"tree\": {\n \"sha\": \"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"71f455d4e8fb8258ca39129cee985345e739e2b2\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2NjMwOjcxZjQ1NWQ0ZThmYjgyNThjYTM5MTI5Y2VlOTg1MzQ1ZTczOWUyYjI=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/71f455d4e8fb8258ca39129cee985345e739e2b2\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/71f455d4e8fb8258ca39129cee985345e739e2b2\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:34Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:14:34Z\"\n },\n \"tree\": {\n \"sha\": \"7cf291b2f7c2551d3f258fed4fa143ce4c85e02a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7cf291b2f7c2551d3f258fed4fa143ce4c85e02a\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/72f47dff2c77cfcc306ba4c330ba3dabe2bea975\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"99e53baa6c6996a241aa736806788ce76523551e\",\"force\":false}", + "body": "{\"sha\":\"71f455d4e8fb8258ca39129cee985345e739e2b2\",\"force\":false}", "method": "PATCH", "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:17 GMT", + "Date": "Sun, 17 Nov 2019 08:14:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4873", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4658", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d098bd86ada8d29df11d6ffbd1f88c3a\"", + "ETag": "W/\"53abd9bb46eb36eb79721a4769146a35\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1797,28 +1480,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFE:1510F:1FC25DB:26BECC7:5D7892D4", - "content-length": "494", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E1A:21C0CEE:2812CB6:5DD1016A", + "content-length": "494" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"99e53baa6c6996a241aa736806788ce76523551e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2NjMwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"71f455d4e8fb8258ca39129cee985345e739e2b2\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/71f455d4e8fb8258ca39129cee985345e739e2b2\"\n }\n}\n", "status": 200 }, { "body": "{\"state\":\"closed\"}", "method": "PATCH", - "url": "/repos/owner/repo/pulls/1?ts=300", + "url": "/repos/owner/repo/pulls/7?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:18 GMT", + "Date": "Sun, 17 Nov 2019 08:14:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4872", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"232b35fe7b732cc2894d20c7c75e6ec5\"", + "ETag": "W/\"cfaeea9e72f1597a04c18a4dc279a414\"", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1830,24 +1512,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A01:2B1F:200AE74:273C5FF:5D7892D6", - "content-length": "22303", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192D:470BF:B29A0:E0707:5DD1016C", + "content-length": "22303" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:18Z\",\n \"closed_at\": \"2019-09-11T06:23:12Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": false,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831145,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxMTQ1\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:14:24Z\",\n \"updated_at\": \"2019-11-17T08:14:36Z\",\n \"closed_at\": \"2019-11-17T08:14:31Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"c50601f65d6fe4a7609b5fdc10aa95709978f2c7\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"7d5d160803dd7769695f8ed0880aa94e57187c49\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:14:35Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:14:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7d5d160803dd7769695f8ed0880aa94e57187c49\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": false,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/forkOwner/repo/git/refs/heads/cms%2FforkOwner%2Frepo%2Fposts%2F1970-01-01-first-title?ts=300", "headers": { - "Date": "Wed, 11 Sep 2019 06:23:19 GMT", - "Content-Type": "application/octet-stream", + "Date": "Sun, 17 Nov 2019 08:14:37 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4871", - "X-RateLimit-Reset": "1568186244", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1860,9 +1540,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A05:244EB:2A757F9:33BAF7E:5D7892D6", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192E:1C97B:2AD3D7:3313D5:5DD1016C", + "content-length": "0" }, "response": null, "status": 204 diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json index 7c9555c4..7848200d 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:43 GMT", + "Date": "Sun, 17 Nov 2019 08:10:26 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4425", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4499", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA5:450D6:6A415AF:7E8C0EE:5DCBBABF", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C3:2E3F0:2FB10A8:386C072:5DD10072", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:44 GMT", + "Date": "Sun, 17 Nov 2019 08:10:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4424", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4498", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA8:450E4:898B025:A3D7988:5DCBBABF", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C6:23E1B:2E536E8:36E6A2E:5DD10072", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -68,16 +66,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:44 GMT", + "Date": "Sun, 17 Nov 2019 08:10:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4423", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4497", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -90,9 +88,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAD:3A593:8D7BF3:A96CB9:5DCBBAC0", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C7:23E1A:21B2A30:2801C38:5DD10073", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -101,17 +98,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:45 GMT", + "Date": "Sun, 17 Nov 2019 08:10:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4422", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4496", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"88594626aa71471692c616b9d813a410\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"84ef1add5af8d4e2f9d28894e08c3cdf\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -123,61 +120,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB2:3A596:65AB701:7970143:5DCBBAC0", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C8:2E3EE:22FA00E:2984A91:5DD10074", + "content-length": "7296" }, - "response": "{\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 1,\n \"subscribers_count\": 1\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4421", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0fdf5cd0f3854ddcb55c95a2b0effaaf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB9:2CFEA:66B3CFD:7A72C50:5DCBBAC1", - "content-length": "3484", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 1,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4420", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4495", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"86071b9029874793ef66b7f15d4a54e6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -189,24 +152,55 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB8:43EF6:67806E0:7B90222:5DCBBAC1", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:8070:22B18B4:29342B8:5DD10074", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4494", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2dfa0842502045aa73be369037322600\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19CF:23E17:2855AC:30516E:5DD10074", + "content-length": "3484" + }, + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4418", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4493", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -221,9 +215,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC9:450D3:1A7BBF2:1FC3309:5DCBBAC2", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D1:23E19:13F4B04:179D5E5:5DD10075", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -232,13 +225,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4419", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4492", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -253,88 +246,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBE:450D5:3AF0B8D:468FB43:5DCBBAC2", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D2:2E3EE:22FA182:2984C54:5DD10075", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4417", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCA:2CFEA:66B3DFF:7A72D8B:5DCBBAC2", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4416", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCB:2CFED:905983B:ABD9400:5DCBBAC2", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:46 GMT", + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4415", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4491", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", @@ -349,29 +277,90 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC8:43EF8:8A16A15:A4743D8:5DCBBAC2", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D5:1C993:2D29A6C:35947EE:5DD10075", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4490", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19D3:2E3F0:2FB147D:386C513:5DD10075", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4489", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19D4:2E3ED:137D413:1742ECE:5DD10075", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:50 GMT", + "Date": "Sun, 17 Nov 2019 08:10:33 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "472", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4414", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4488", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:25 GMT", + "ETag": "\"18ae4181b0cd32ccb706417a8d2bed917a39315b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:10 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -383,23 +372,50 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCF:2CFED:9059D4A:ABD9A21:5DCBBAC5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D7:2E3F0:2FB18D8:386CA88:5DD10078" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"7449fac988578204d2b8ad477d151e659a7dd116\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"c015fcb574043b0c5aa338a1ca332f4aec7a3f76\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4487", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19D9:2E3ED:137D653:1743191:5DD10079", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:50 GMT", + "Date": "Sun, 17 Nov 2019 08:10:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4413", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4486", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -411,9 +427,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD6:450D5:3AF0DDC:468FE18:5DCBBAC6", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D8:2E3F0:2FB197F:386CB5B:5DD10079", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -422,13 +437,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:50 GMT", + "Date": "Sun, 17 Nov 2019 08:10:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4412", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4485", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -440,38 +455,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD7:33B09:699BCCC:7E114BC:5DCBBAC6", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4411", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD8:3A594:1BB7763:2143C43:5DCBBAC6", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470CB:2CD7C73:3515D2E:5DD10079", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -481,17 +466,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:52 GMT", + "Date": "Sun, 17 Nov 2019 08:10:34 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4410", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4484", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2322927891cae93acf08fdda52d363ea\"", + "ETag": "\"86d691e55fcb8e55fa00b8bed816c2b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -504,8 +489,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDD:33B08:3EE3F38:4B0AA5D:5DCBBAC7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DB:1C993:2D2A0CD:3594F88:5DD1007A" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -514,16 +498,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:52 GMT", + "Date": "Sun, 17 Nov 2019 08:10:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4409", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4483", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -535,196 +519,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE2:2CFEA:66B455C:7A73662:5DCBBAC8", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DC:1C993:2D2A1C7:35950B1:5DD1007B", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4408", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"347da4c3e9e1d5b2c05447eb53a75caf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE3:BBF0:1CE99A6:227A5CF:5DCBBAC8", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4407", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e98a675f711752ab78ffbd2b2335f9c4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE8:3A596:65AC04B:7970C88:5DCBBAC9", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4406", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE9:33B0A:8A9D68F:A559DE1:5DCBBAC9", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4405", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9f5e9fab5889373d1ac19193c49a67ea\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEE:450E4:898C106:A3D8E42:5DCBBACA", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4404", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF3:3A594:1BB7931:2143E6D:5DCBBACB", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:11:56 GMT", + "Date": "Sun, 17 Nov 2019 08:10:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4403", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4482", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df03b9f2a5c710df199b70b4a0d6a3db\"", + "ETag": "\"512dcc4355a8a182499e0573be267a38\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -737,8 +553,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF8:3A595:3DFF7CF:4A1E720:5DCBBACC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DD:1C993:2D2A28A:35951A2:5DD1007B" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -748,20 +563,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:57 GMT", + "Date": "Sun, 17 Nov 2019 08:10:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4402", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4481", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"92f972e87d634a825f9d5e2fda16a5af\"", + "ETag": "\"a4e653b339d04c5340a3e03dec7005a4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e", + "Location": "https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -771,28 +586,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF9:2CFEA:66B4BAC:7A73DF2:5DCBBACC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DE:34218:2F16298:37C7D44:5DD1007C" }, - "response": "{\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmYyYjNmYjliZDc1Y2I3ODY4OGI4ZDUwYzBmZDUwM2M2ZGZhYjE4NGU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjQ5YzRiNTNmZDA3NzVkYTgzNjNkMjY1ODA1N2E2ODNjNTM3MzY3YTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"49c4b53fd0775da8363d2658057a683c537367a7\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:11:58 GMT", + "Date": "Sun, 17 Nov 2019 08:10:37 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4401", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4480", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3dcdf932301f4844c8d42f25866ff17d\"", + "ETag": "\"f2aa03d80755e48c8a478babb0921776\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -805,10 +619,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFE:3A597:8E4702B:A92072A:5DCBBACD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DF:2E3F0:2FB1E1A:386D0FF:5DD1007C" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\"\n }\n}\n", "status": 201 }, { @@ -816,17 +629,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:00 GMT", + "Date": "Sun, 17 Nov 2019 08:10:39 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4400", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4479", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e9fe7386a9e6646463b77f45f2c59049\"", + "ETag": "\"4251140f5f54a06d7c05fcc92b438c5c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/4", @@ -839,27 +652,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E07:43EF6:6781666:7B914E3:5DCBBACF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E0:2E3F0:2FB1F42:386D265:5DD1007E" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 340297993,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk3OTkz\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:11:59Z\",\n \"updated_at\": \"2019-11-13T08:11:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:11:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:11:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 341830915,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwOTE1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:10:38Z\",\n \"updated_at\": \"2019-11-17T08:10:38Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:10:37Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:10:37Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/49c4b53fd0775da8363d2658057a683c537367a7\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:00 GMT", + "Date": "Sun, 17 Nov 2019 08:10:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4399", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4478", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1261ad4964f2625bc4a2f332e27a2185\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"94b14b44856ee814630e0206c7c1588d\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -872,32 +684,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E0C:43EF3:3A4D625:45DC0BB:5DCBBAD0", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E1:23E19:13F4FD6:179DBD8:5DD1007F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18d3e27b0158968726a99d594c4b58224b4f3a0d\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3fdc23d7e47356cb190016dcfaf6c69273ad461a\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJmMmIzZmI5YmQ3NWNiNzg2ODhiOGQ1MGMwZmQ1MDNjNmRmYWIxODRlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0OWM0YjUzZmQwNzc1ZGE4MzYzZDI2NTgwNTdhNjgzYzUzNzM2N2E3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:01 GMT", + "Date": "Sun, 17 Nov 2019 08:10:40 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4398", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4477", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"18aee9ae7fb2067e3ff48d1103e9a40f\"", + "ETag": "\"7fba05290134f16ebab05194e4814bba\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/8ec4f954451b98d5b3aca209de214c82a0c891ad", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/ccdae125a3d509b90d5036a114d774fdf2384db9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -907,64 +718,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E11:33B0A:8A9E11A:A55AAD9:5DCBBAD1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E2:8072:2DEBB5D:368696D:5DD1007F" }, - "response": "{\n \"sha\": \"8ec4f954451b98d5b3aca209de214c82a0c891ad\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8ec4f954451b98d5b3aca209de214c82a0c891ad\"\n}\n", + "response": "{\n \"sha\": \"ccdae125a3d509b90d5036a114d774fdf2384db9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ccdae125a3d509b90d5036a114d774fdf2384db9\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/18d3e27b0158968726a99d594c4b58224b4f3a0d?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4397", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"58e5ff6d0f0a07410141a20423ed8b55\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E12:3A597:8E47730:A920FAA:5DCBBAD1", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4e8e2f0360b786aa89a5e6b2cdaa44412e7ff9eb\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"8ec4f954451b98d5b3aca209de214c82a0c891ad\"}]}", + "body": "{\"base_tree\":\"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ccdae125a3d509b90d5036a114d774fdf2384db9\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:02 GMT", + "Date": "Sun, 17 Nov 2019 08:10:41 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4396", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4476", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4da6ada924b8dd9898c7968931b4aa80\"", + "ETag": "\"6e7e01e2f88183a03a2b1d6dde9ccf2e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/851ada79978c0a6652f2a947a005787a96a935e0", + "Location": "https://api.github.com/repos/owner/repo/git/trees/59927f02e96dbfdee900804399059755575c2387", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -974,31 +751,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E17:450E4:898CDC7:A3D9DEF:5DCBBAD2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E3:2E3F0:2FB2276:386D666:5DD10080" }, - "response": "{\n \"sha\": \"851ada79978c0a6652f2a947a005787a96a935e0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/851ada79978c0a6652f2a947a005787a96a935e0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8ec4f954451b98d5b3aca209de214c82a0c891ad\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8ec4f954451b98d5b3aca209de214c82a0c891ad\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"59927f02e96dbfdee900804399059755575c2387\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/59927f02e96dbfdee900804399059755575c2387\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ccdae125a3d509b90d5036a114d774fdf2384db9\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ccdae125a3d509b90d5036a114d774fdf2384db9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"851ada79978c0a6652f2a947a005787a96a935e0\",\"parents\":[\"18d3e27b0158968726a99d594c4b58224b4f3a0d\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"59927f02e96dbfdee900804399059755575c2387\",\"parents\":[\"3fdc23d7e47356cb190016dcfaf6c69273ad461a\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:03 GMT", + "Date": "Sun, 17 Nov 2019 08:10:42 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4395", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4475", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"716fc468fcd670be1eea51616e2fddec\"", + "ETag": "\"ab6f05c1143c7d6b259daa9542a24f84\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/62d0e0b11c6e531c25fe682b0af432154cde74fa", + "Location": "https://api.github.com/repos/owner/repo/git/commits/656a7c734799bc9e9c8448579fad7053c9b65616", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1008,27 +784,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1C:3A595:3DFFE8B:4A1EF41:5DCBBAD3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E4:470CB:2CD85FC:35168F3:5DD10081" }, - "response": "{\n \"sha\": \"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjYyZDBlMGIxMWM2ZTUzMWMyNWZlNjgyYjBhZjQzMjE1NGNkZTc0ZmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"html_url\": \"https://github.com/owner/repo/commit/62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:03Z\"\n },\n \"tree\": {\n \"sha\": \"851ada79978c0a6652f2a947a005787a96a935e0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/851ada79978c0a6652f2a947a005787a96a935e0\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18d3e27b0158968726a99d594c4b58224b4f3a0d\",\n \"html_url\": \"https://github.com/owner/repo/commit/18d3e27b0158968726a99d594c4b58224b4f3a0d\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjY1NmE3YzczNDc5OWJjOWU5Yzg0NDg1NzlmYWQ3MDUzYzliNjU2MTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"html_url\": \"https://github.com/owner/repo/commit/656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:41Z\"\n },\n \"tree\": {\n \"sha\": \"59927f02e96dbfdee900804399059755575c2387\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/59927f02e96dbfdee900804399059755575c2387\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3fdc23d7e47356cb190016dcfaf6c69273ad461a\",\n \"html_url\": \"https://github.com/owner/repo/commit/3fdc23d7e47356cb190016dcfaf6c69273ad461a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\"force\":false}", + "body": "{\"sha\":\"656a7c734799bc9e9c8448579fad7053c9b65616\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:04 GMT", + "Date": "Sun, 17 Nov 2019 08:10:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4394", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4474", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b718382cd2686da793f14d2d747b731d\"", + "ETag": "W/\"afe2e0ef11615d712146a1c339020be0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1040,57 +815,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1E:43EF8:8A18689:A476611:5DCBBAD3", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E7:470C9:227852D:28F4AE8:5DD10082", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/62d0e0b11c6e531c25fe682b0af432154cde74fa\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:05 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4393", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E26:43EEE:1DA3F98:2370F59:5DCBBAD5", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/656a7c734799bc9e9c8448579fad7053c9b65616\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:05 GMT", + "Date": "Sun, 17 Nov 2019 08:10:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4392", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4473", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1102,27 +843,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E28:2CFE8:3EADC13:4B33712:5DCBBAD5", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EA:8070:22B2919:2935676:5DD10083", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:06 GMT", + "Date": "Sun, 17 Nov 2019 08:10:44 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4472", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:10:36 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19E9:470CB:2CD88C2:3516C66:5DD10083" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4391", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4471", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1134,28 +906,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2D:33B08:3EE4C3C:4B0BA02:5DCBBAD6", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EB:806C:88144F:A1CFEB:5DD10084", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:06 GMT", + "Date": "Sun, 17 Nov 2019 08:10:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4390", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4470", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"54715e9c3fd33b2573e3fcad1e76c954\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"42ceebb98e1e7e1ee9286b74980e3da9\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1168,27 +939,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2E:BBF0:1CE9F21:227AC89:5DCBBAD6", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EC:1C993:2D2AEFA:3596090:5DD10084", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:07 GMT", + "Date": "Sun, 17 Nov 2019 08:10:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4389", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4469", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a8419b976ee003e1c4cb212ba7384f69\"", + "ETag": "W/\"9bf184c04ae647b96b475e88c264db0e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1200,57 +970,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E33:2CFED:905BB26:ABDBE69:5DCBBAD7", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19ED:23E1B:2E54D8E:36E85D6:5DD10085", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 340297993,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk3OTkz\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:11:59Z\",\n \"updated_at\": \"2019-11-13T08:11:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ae8ac048d298d83e2b1b732e6eb73e5df81c924e\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:08 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4388", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E36:43EF8:8A18E62:A476F39:5DCBBAD7", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 341830915,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwOTE1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:10:38Z\",\n \"updated_at\": \"2019-11-17T08:10:38Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"cdbfc99f4e7d7196b1294d00dd8691842a798c1d\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:10:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:10:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/49c4b53fd0775da8363d2658057a683c537367a7\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:08 GMT", + "Date": "Sun, 17 Nov 2019 08:10:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4387", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4468", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1262,90 +998,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E35:33B08:3EE4DEE:4B0BBF7:5DCBBAD7", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EF:23E19:13F5305:179DFCE:5DD10085", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4385", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E3B:3A597:8E484B9:A921F9A:5DCBBAD8", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4386", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E39:33B0A:8A9EEAB:A55BAF6:5DCBBAD8", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:08 GMT", + "Date": "Sun, 17 Nov 2019 08:10:46 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4384", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4467", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:57 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:10:36 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1357,26 +1031,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E3A:3A596:65AD4A7:79724D5:5DCBBAD8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EE:23E1A:21B3A98:280306D:5DD10085" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=300", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:09 GMT", + "Date": "Sun, 17 Nov 2019 08:10:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4383", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4466", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1388,27 +1061,86 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E40:2CFED:905BEDE:ABDC2B5:5DCBBAD9", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F0:34217:231F496:29BC27B:5DD10086", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:11 GMT", + "Date": "Sun, 17 Nov 2019 08:10:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4465", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19F1:1C993:2D2B151:359636E:5DD10086", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:47 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4464", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:10:36 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19F2:2E3F0:2FB2960:386DEFE:5DD10086" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4382", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4463", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1420,11 +1152,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E49:BBF8:6933A96:7D7B3F7:5DCBBADB", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F3:470CB:2CD8D79:351721B:5DD10087", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4462", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19F4:2E3F0:2FB2DAA:386E43F:5DD1008A", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", "status": 200 }, { @@ -1432,17 +1194,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:13 GMT", + "Date": "Sun, 17 Nov 2019 08:10:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4381", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4461", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fb80f25a4383c0f4a78633c57bba85ca\"", + "ETag": "\"105c00c2af0f1516bc0e95df215fa236\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1455,26 +1217,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E54:33B07:19DB238:1F3686E:5DCBBADD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F5:2E3EE:22FB85D:29867DD:5DD1008B" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=600", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:14 GMT", + "Date": "Sun, 17 Nov 2019 08:10:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4380", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4460", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1486,27 +1247,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E58:3A597:8E48DA7:A922A41:5DCBBADE", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F6:23E16:AAAD0:D0776:5DD1008C", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:14 GMT", + "Date": "Sun, 17 Nov 2019 08:10:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4379", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4459", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cfd7d26ac1d3b3b49d6eaca0dbf0eefa\"", + "ETag": "W/\"4cecb8b3b50cfb84c695219dfec6e115\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1518,260 +1278,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E59:43EF6:6782B48:7B92DBF:5DCBBADE", - "content-length": "4815", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F7:1C985:133D808:16DEEF8:5DD1008C", + "content-length": "4815" }, - "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmYyYjNmYjliZDc1Y2I3ODY4OGI4ZDUwYzBmZDUwM2M2ZGZhYjE4NGU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjQ5YzRiNTNmZDA3NzVkYTgzNjNkMjY1ODA1N2E2ODNjNTM3MzY3YTc=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4378", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"37510362483e717cc4dca3e61b9dcf1d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5C:BBFA:87FF1A0:A2ACB1B:5DCBBADE", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4377", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5D:450E4:898E335:A3DB776:5DCBBADE", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4376", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E62:33B0A:8A9F9A9:A55C821:5DCBBADF", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4375", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f5e9fab5889373d1ac19193c49a67ea\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E63:3A595:3E00A37:4A1FD0D:5DCBBADF", - "content-length": "2362", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"49c4b53fd0775da8363d2658057a683c537367a7\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4374", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1cd64a47b3f4a9bafb07183016028ca5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E68:2CFED:905CB2F:ABDD181:5DCBBAE0", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4373", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6E:BBF0:1CEA361:227B1A5:5DCBBAE1", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4372", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"982343f7b65a7e80fe70e4020484fe0a\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E69:43EEE:1DA44FC:23715BA:5DCBBAE0", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:18 GMT", + "Date": "Sun, 17 Nov 2019 08:10:53 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4371", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4458", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"05a5054793cf8e66ac9f471b430e9175\"", + "ETag": "\"83db8c727f61c729c765f4403bcc4cc9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", @@ -1784,31 +1312,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6F:450E4:898E75E:A3DBC93:5DCBBAE1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F8:470C9:2278F0C:28F56E8:5DD1008D" }, "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=600", + "method": "GET", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:19 GMT", + "Date": "Sun, 17 Nov 2019 08:10:53 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", "Server": "GitHub.com", - "Status": "201 Created", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4370", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4457", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9746b7767a899e331cc5c19d382afdc1\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/7225d2c713d83ede71716359b73f7ed08d2ad575", + "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1818,26 +1342,59 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E74:2CFED:905CF20:ABDD620:5DCBBAE2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F9:806C:881673:A1D28B:5DD1008D", + "content-length": "6574" }, - "response": "{\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjcyMjVkMmM3MTNkODNlZGU3MTcxNjM1OWI3M2Y3ZWQwOGQyYWQ1NzU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"html_url\": \"https://github.com/owner/repo/commit/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:18Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:18Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"49c4b53fd0775da8363d2658057a683c537367a7\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4456", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c5d40536859ce822fc1ac90e426ab494\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19FA:2E3F0:2FB3214:386E9B0:5DD1008D" + }, + "response": "{\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjQ1ZWZlODFlYjJhMDY3Y2U5NTU3MDAxMjZjZTUxYzhiMWZkOGE2YjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"html_url\": \"https://github.com/owner/repo/commit/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:54Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:54Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/49c4b53fd0775da8363d2658057a683c537367a7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/branches/master?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:19 GMT", + "Date": "Sun, 17 Nov 2019 08:10:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4369", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4455", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1849,28 +1406,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7B:3A597:8E495C3:A92340C:5DCBBAE3", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FC:470CB:2CD95DF:3517C64:5DD1008E", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls/4/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:19 GMT", + "Date": "Sun, 17 Nov 2019 08:10:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4368", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4454", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fb5963f7ef49d8daee08a1b823b749de\"", - "Last-Modified": "Wed, 13 Nov 2019 08:11:59 GMT", + "ETag": "W/\"bdae769909f5568a37682f20e5f3e1c6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:10:38 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1882,60 +1438,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7C:2CFED:905D0CE:ABDD830:5DCBBAE3", - "content-length": "4157", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FD:34216:131CCD3:16A8978:5DD1008E", + "content-length": "4157" }, - "response": "[\n {\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmYyYjNmYjliZDc1Y2I3ODY4OGI4ZDUwYzBmZDUwM2M2ZGZhYjE4NGU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:11:57Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4367", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7D:BBF0:1CEA44A:227B2B6:5DCBBAE3", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "[\n {\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjQ5YzRiNTNmZDA3NzVkYTgzNjNkMjY1ODA1N2E2ODNjNTM3MzY3YTc=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:36Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:20 GMT", + "Date": "Sun, 17 Nov 2019 08:10:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4366", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4453", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b718382cd2686da793f14d2d747b731d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"afe2e0ef11615d712146a1c339020be0\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1948,27 +1471,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A597:8E496E4:A923555:5DCBBAE3", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FE:23E19:13F5762:179E524:5DD1008F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/62d0e0b11c6e531c25fe682b0af432154cde74fa\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/656a7c734799bc9e9c8448579fad7053c9b65616\"\n }\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status?ts=600", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:20 GMT", + "Date": "Sun, 17 Nov 2019 08:10:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4365", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4452", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6ced527f6be8fa9b6fb6b5932278776c\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1980,32 +1502,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E82:33B0A:8AA01AF:A55D1D9:5DCBBAE4", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FF:34216:131CD35:16A89F8:5DD1008F", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f2b3fb9bd75cb78688b8d50c0fd503c6dfab184e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI3MjI1ZDJjNzEzZDgzZWRlNzE3MTYzNTliNzNmN2VkMDhkMmFkNTc1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0NWVmZTgxZWIyYTA2N2NlOTU1NzAwMTI2Y2U1MWM4YjFmZDhhNmI1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:20 GMT", + "Date": "Sun, 17 Nov 2019 08:10:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4364", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4451", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f4e3407c10172adfd5e0f0a1c4c3a651\"", + "ETag": "\"e22be914364776d071f20ef7e97ae520\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/5f4c124f45663b2ea1c28524639491fb7bc2e84b", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/9655433c85959b330b99630df5fe98749f8759f9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2015,64 +1536,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E83:3A596:65AE469:797379C:5DCBBAE4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1800:1C98C:23618DE:29DF517:5DD1008F" }, - "response": "{\n \"sha\": \"5f4c124f45663b2ea1c28524639491fb7bc2e84b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5f4c124f45663b2ea1c28524639491fb7bc2e84b\"\n}\n", + "response": "{\n \"sha\": \"9655433c85959b330b99630df5fe98749f8759f9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9655433c85959b330b99630df5fe98749f8759f9\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/62d0e0b11c6e531c25fe682b0af432154cde74fa?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4363", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"807172ab0041159eb9a80b1c828a4848\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E88:450D6:6A448C3:7E8FDBB:5DCBBAE5", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8ec4f954451b98d5b3aca209de214c82a0c891ad\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8ec4f954451b98d5b3aca209de214c82a0c891ad\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5f4c124f45663b2ea1c28524639491fb7bc2e84b\"}]}", + "body": "{\"base_tree\":\"656a7c734799bc9e9c8448579fad7053c9b65616\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"9655433c85959b330b99630df5fe98749f8759f9\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:22 GMT", + "Date": "Sun, 17 Nov 2019 08:10:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4362", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4450", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"96ae859818768ba3eaf5e415942bb411\"", + "ETag": "\"13cf27c473dcdb2af04cf3c29437dc43\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69", + "Location": "https://api.github.com/repos/owner/repo/git/trees/b37488132e382bcd9829027fe84394cca0714958", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2082,31 +1569,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E89:3A597:8E499E8:A9238F1:5DCBBAE5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1801:1C993:2D2BE6D:3597365:5DD10090" }, - "response": "{\n \"sha\": \"4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5f4c124f45663b2ea1c28524639491fb7bc2e84b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5f4c124f45663b2ea1c28524639491fb7bc2e84b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"b37488132e382bcd9829027fe84394cca0714958\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b37488132e382bcd9829027fe84394cca0714958\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9655433c85959b330b99630df5fe98749f8759f9\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9655433c85959b330b99630df5fe98749f8759f9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69\",\"parents\":[\"62d0e0b11c6e531c25fe682b0af432154cde74fa\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"b37488132e382bcd9829027fe84394cca0714958\",\"parents\":[\"656a7c734799bc9e9c8448579fad7053c9b65616\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:23 GMT", + "Date": "Sun, 17 Nov 2019 08:10:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4361", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4449", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"86e3f205cd1d46c7adfa1f5a231112bd\"", + "ETag": "\"fb959123d10a9d8de2b883c87bfee8ec\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/d5bf08a8456568a91ed7b158bfc3a6ea446ba960", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2116,92 +1602,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8E:43EF8:8A1A723:A478CDF:5DCBBAE6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1802:470CB:2CD9928:3518065:5DD10091" }, - "response": "{\n \"sha\": \"d5bf08a8456568a91ed7b158bfc3a6ea446ba960\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmQ1YmYwOGE4NDU2NTY4YTkxZWQ3YjE1OGJmYzNhNmVhNDQ2YmE5NjA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d5bf08a8456568a91ed7b158bfc3a6ea446ba960\",\n \"html_url\": \"https://github.com/owner/repo/commit/d5bf08a8456568a91ed7b158bfc3a6ea446ba960\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:22Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:12:22Z\"\n },\n \"tree\": {\n \"sha\": \"4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4c9b81b4fcd247a6d62b3c565a6c5c9d3cc10d69\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/62d0e0b11c6e531c25fe682b0af432154cde74fa\",\n \"html_url\": \"https://github.com/owner/repo/commit/62d0e0b11c6e531c25fe682b0af432154cde74fa\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjJkZmI1Y2JkYzU3YzQxMzljZGQxNmJlNmQwOWI1N2ExYjcyYWNhN2I=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\",\n \"html_url\": \"https://github.com/owner/repo/commit/2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:10:57Z\"\n },\n \"tree\": {\n \"sha\": \"b37488132e382bcd9829027fe84394cca0714958\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b37488132e382bcd9829027fe84394cca0714958\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/656a7c734799bc9e9c8448579fad7053c9b65616\",\n \"html_url\": \"https://github.com/owner/repo/commit/656a7c734799bc9e9c8448579fad7053c9b65616\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, - { - "body": "{\"sha\":\"d5bf08a8456568a91ed7b158bfc3a6ea446ba960\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4360", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b590fa8649ce148017b7b2788613fc2a\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E93:450E4:898EFD5:A3DC6F0:5DCBBAE7", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d5bf08a8456568a91ed7b158bfc3a6ea446ba960\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d5bf08a8456568a91ed7b158bfc3a6ea446ba960\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"7225d2c713d83ede71716359b73f7ed08d2ad575\",\"force\":true}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:12:25 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4359", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"100179c32a1af9955843272cac571867\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E98:33B0A:8AA086E:A55D9F2:5DCBBAE8", - "content-length": "518", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\"\n }\n}\n", - "status": 200 - }, { "method": "GET", - "url": "/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status?ts=600", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:26 GMT", + "Date": "Sun, 17 Nov 2019 08:10:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4358", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4448", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"69b65d80a0c643504e4d6aee85ac35f4\"", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2213,28 +1632,153 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9E:3A596:65AEB26:7973FA3:5DCBBAE9", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1803:1C98C:2361B29:29DF7D1:5DD10091", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4447", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e80530dd2b72b9da1bcdfdc151af1d5d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1804:806C:8817B7:A1D407:5DD10092", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2dfb5cbdc57c4139cdd16be6d09b57a1b72aca7b\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:10:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4446", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1a5d30eeaa4b71cadb6a32c563dda44b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1805:34216:131CE86:16A8B9B:5DD10092", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"49c4b53fd0775da8363d2658057a683c537367a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/49c4b53fd0775da8363d2658057a683c537367a7/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:11:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4445", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a628706a0c34770db4816f58a33feba5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1806:2E3EE:22FC02E:2987132:5DD10093", + "content-length": "518" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:11:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4444", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7b09c163af33ec23667a9e6cec719051\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1807:470CB:2CD9CAF:35184B9:5DD10094", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:26 GMT", + "Date": "Sun, 17 Nov 2019 08:11:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4357", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4443", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"26f9dd10138ece0a3421946a18c2355b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "ETag": "W/\"25ab4dd7d6258db5061b79e30fdba1db\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2247,27 +1791,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A597:8E4A0EC:A92415B:5DCBBAE9", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1808:23E17:2858F4:305551:5DD10094", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:27 GMT", + "Date": "Sun, 17 Nov 2019 08:11:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4356", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4442", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5d4c8f75d3e43ec889b6b6201b2cbc1c\"", + "ETag": "W/\"74c39e35b03fb52c98685a0abbd8fb2c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2279,24 +1822,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA4:33B09:699EA51:7E14C0E:5DCBBAEA", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1809:34217:23201B6:29BD2EA:5DD10095", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 340297993,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk3OTkz\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:11:59Z\",\n \"updated_at\": \"2019-11-13T08:12:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ae8ac048d298d83e2b1b732e6eb73e5df81c924e\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:12:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7225d2c713d83ede71716359b73f7ed08d2ad575\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 341830915,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwOTE1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:10:38Z\",\n \"updated_at\": \"2019-11-17T08:11:00Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"cdbfc99f4e7d7196b1294d00dd8691842a798c1d\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:01Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:11:01Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:27 GMT", + "Date": "Sun, 17 Nov 2019 08:11:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4355", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4441", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2308,9 +1850,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA9:2CFE8:3EAECD9:4B34B81:5DCBBAEB", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180A:23E1A:21B4A33:2804351:5DD10095", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -2319,18 +1860,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:27 GMT", + "Date": "Sun, 17 Nov 2019 08:11:02 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4354", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4440", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", - "Last-Modified": "Wed, 13 Nov 2019 08:12:18 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:10:54 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2342,26 +1883,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EAA:3A597:8E4A375:A924461:5DCBBAEB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180B:1C993:2D2C5D0:3597C30:5DD10095" }, "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status?ts=600", + "url": "/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:31 GMT", + "Date": "Sun, 17 Nov 2019 08:11:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4349", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4435", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"69b65d80a0c643504e4d6aee85ac35f4\"", + "ETag": "W/\"7b09c163af33ec23667a9e6cec719051\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2373,27 +1913,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC2:2CFEA:66B7AAA:7A775A8:5DCBBAEF", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1812:34218:2F18DC1:37CB11B:5DD1009A", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status?ts=600", + "url": "/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:12:37 GMT", + "Date": "Sun, 17 Nov 2019 08:11:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4348", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4434", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"69b65d80a0c643504e4d6aee85ac35f4\"", + "ETag": "W/\"7b09c163af33ec23667a9e6cec719051\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2405,11 +1944,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDA:43EF6:67845C9:7B94DD8:5DCBBAF5", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181C:23E1A:21B54DF:280501C:5DD1009F", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7225d2c713d83ede71716359b73f7ed08d2ad575/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/45efe81eb2a067ce955700126ce51c8b1fd8a6b5/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json index 8d06f3c1..801266c6 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:39 GMT", + "Date": "Sun, 17 Nov 2019 08:06:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4567", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4624", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8A:2CFEA:66A1187:7A5C3B1:5DCBB9CB", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1864:34218:2F01201:37AED4F:5DD0FF92", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:40 GMT", + "Date": "Sun, 17 Nov 2019 08:06:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4566", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4623", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8E:43EF3:3A3FD0B:45CBF51:5DCBB9CB", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1868:8072:2DD7AFD:366EAAF:5DD0FF92", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -68,16 +66,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:40 GMT", + "Date": "Sun, 17 Nov 2019 08:06:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4565", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4622", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -90,9 +88,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E93:450E4:8973DC3:A3BB78D:5DCBB9CC", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186C:23E1A:21A65A5:27F2CE1:5DD0FF93", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -101,17 +98,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:41 GMT", + "Date": "Sun, 17 Nov 2019 08:06:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4564", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4621", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ae9d572c9187e98b188de982ed3a5754\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"e48b3da73ed33cc355048b32d3ad7aa0\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -123,28 +120,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E95:2CFEA:66A137F:7A5C5FE:5DCBB9CC", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186F:2E3EE:22EAA59:2972703:5DD0FF93", + "content-length": "7296" }, - "response": "{\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:07:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:41 GMT", + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4563", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4620", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"86071b9029874793ef66b7f15d4a54e6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -156,9 +152,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E99:33B0A:8A8572A:A53CB3F:5DCBB9CD", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1876:8072:2DD7D94:366EDDA:5DD0FF94", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -167,17 +162,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:41 GMT", + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4562", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4619", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0fdf5cd0f3854ddcb55c95a2b0effaaf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"2dfa0842502045aa73be369037322600\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -189,88 +184,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9C:2CFE8:3EA0D57:4B23C72:5DCBB9CD", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1877:2E3F0:2F9FC2C:3857096:5DD0FF94", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:42 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4561", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA0:33B09:6987BE1:7DF93CA:5DCBB9CE", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:42 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4560", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A595:3DF2DE1:4A0F508:5DCBB9CE", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:42 GMT", + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4559", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4618", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -285,24 +215,85 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9E:3A595:3DF2DE4:4A0F509:5DCBB9CE", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187D:8072:2DD7E47:366EEA6:5DD0FF95", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4617", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "187F:34218:2F01699:37AF2A0:5DD0FF95", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4616", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1884:8070:22A42E0:2924067:5DD0FF95", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:42 GMT", + "Date": "Sun, 17 Nov 2019 08:06:45 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4557", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4615", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -317,9 +308,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9D:2CFEA:66A152E:7A5C7FE:5DCBB9CE", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187E:470C9:226941B:28E29BF:5DD0FF95", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -328,13 +318,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:42 GMT", + "Date": "Sun, 17 Nov 2019 08:06:46 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4558", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4614", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", @@ -349,9 +339,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA1:450D6:6A2E454:7E75293:5DCBB9CE", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1888:1C98C:2351431:29CBE36:5DD0FF96", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 @@ -360,18 +349,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:46 GMT", + "Date": "Sun, 17 Nov 2019 08:06:48 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "462", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4556", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4613", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ca8254012155a1318f34467fb93a0f941b57fc55\"", - "Last-Modified": "Wed, 13 Nov 2019 08:07:05 GMT", + "ETag": "\"a13e4b514607b2d11b0df2aa017ed39a9a512cd8\"", + "Last-Modified": "Sun, 17 Nov 2019 08:06:09 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -383,23 +372,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB2:3A595:3DF3095:4A0F852:5DCBB9D1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1893:1C985:1336DB9:16D6B0C:5DD0FF98" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"becd6472e1398c0326aed587e8ec294c54d489ba\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"1fd2586ee941532a7d7979616b294ac261ddd695\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:46 GMT", + "Date": "Sun, 17 Nov 2019 08:06:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4555", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4612", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -411,9 +399,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB8:3A595:3DF30FC:4A0F8D0:5DCBB9D2", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1895:2E3F0:2FA012F:3857690:5DD0FF99", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -422,13 +409,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:46 GMT", + "Date": "Sun, 17 Nov 2019 08:06:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4554", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4611", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -440,9 +427,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EB7:3A594:1BB1D7E:213CF74:5DCBB9D2", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1894:1C993:2D16F09:357E327:5DD0FF99", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -451,13 +437,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:47 GMT", + "Date": "Sun, 17 Nov 2019 08:06:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4553", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4610", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -469,9 +455,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBA:43EF8:89FF5CD:A457FB3:5DCBB9D2", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1897:470CB:2CC77EA:350210A:5DD0FF99", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -481,17 +466,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:47 GMT", + "Date": "Sun, 17 Nov 2019 08:06:50 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4552", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4609", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2322927891cae93acf08fdda52d363ea\"", + "ETag": "\"86d691e55fcb8e55fa00b8bed816c2b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -504,8 +489,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBE:BBFA:87E4C8B:A28CC4A:5DCBB9D3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1898:34217:231088A:29AA66E:5DD0FF9A" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -514,16 +498,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:48 GMT", + "Date": "Sun, 17 Nov 2019 08:06:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4551", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4608", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -535,196 +519,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EBF:BBF5:3C3C7DD:47FC999:5DCBB9D4", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1899:1C993:2D1715D:357E5EF:5DD0FF9A", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:49 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4550", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"347da4c3e9e1d5b2c05447eb53a75caf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC4:3A596:6599E5D:795AD94:5DCBB9D4", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:49 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4549", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e98a675f711752ab78ffbd2b2335f9c4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC9:3A596:6599F1F:795AE72:5DCBB9D5", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4548", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECA:33B08:3ED8146:4AFC58A:5DCBB9D5", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:50 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4547", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9f5e9fab5889373d1ac19193c49a67ea\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ECF:3A597:8E2D02D:A90148A:5DCBB9D6", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:51 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4546", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED0:33B08:3ED8204:4AFC677:5DCBB9D7", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:52 GMT", + "Date": "Sun, 17 Nov 2019 08:06:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4545", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4607", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"df03b9f2a5c710df199b70b4a0d6a3db\"", + "ETag": "\"512dcc4355a8a182499e0573be267a38\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -737,8 +553,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2ED5:3A595:3DF34B7:4A0FD48:5DCBB9D7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189A:1C985:1336EC2:16D6C54:5DD0FF9B" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -748,20 +563,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:53 GMT", + "Date": "Sun, 17 Nov 2019 08:06:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4544", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4606", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c28616887bc68bb8b5b4f9d3d2ad5040\"", + "ETag": "\"729a70ca3f1e2b9fee3cc806c823c856\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19", + "Location": "https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -771,28 +586,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDA:43EF8:89FFDF9:A458981:5DCBB9D8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189C:1C981:8C868D:A65D91:5DD0FF9C" }, - "response": "{\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmM3NWQxN2M1ZGRhYmQ5ODFhMWI0YWM4ZDUwOWU2Y2ZiYzc5NjNjMTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"html_url\": \"https://github.com/owner/repo/commit/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OmQ2MTExODQ5ODlmODQ4NTQ1YjFiNGQ0YTNiODllZDNlNDk5NjNmZjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"html_url\": \"https://github.com/owner/repo/commit/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"d611184989f848545b1b4d4a3b89ed3e49963ff5\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:54 GMT", + "Date": "Sun, 17 Nov 2019 08:06:53 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4543", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4605", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f504f15c348c7ca6fba525473114d38a\"", + "ETag": "\"210c37a8cbe66b2cddadc5f68a500fdc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -805,10 +619,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDF:33B09:6988965:7DFA3D2:5DCBB9D9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189E:1C985:1336F35:16D6CE5:5DD0FF9C" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\"\n }\n}\n", "status": 201 }, { @@ -816,17 +629,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:55 GMT", + "Date": "Sun, 17 Nov 2019 08:06:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4542", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4604", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d47c60a82ce419e4f83259cc6c3cd18f\"", + "ETag": "\"d260c640f9f30b69e375aa5b611115e4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/2", @@ -839,27 +652,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE4:BBF5:3C3CC1C:47FCEB5:5DCBB9DA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189F:34215:789513:906253:5DD0FF9E" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340296519,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2NTE5\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:07:54Z\",\n \"updated_at\": \"2019-11-13T08:07:54Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:07:54Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:07:54Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341830704,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNzA0\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:06:54Z\",\n \"updated_at\": \"2019-11-17T08:06:54Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d611184989f848545b1b4d4a3b89ed3e49963ff5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:56 GMT", + "Date": "Sun, 17 Nov 2019 08:06:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4541", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4603", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1c809bd9eed4d769df066d3247c0aca3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"5dbdbd3b3e33b8d3bd63620e0b8da0a5\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -872,32 +684,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEA:43EF6:6770238:7B7C44C:5DCBB9DB", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A0:34218:2F0253D:37B03D7:5DD0FF9F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJjNzVkMTdjNWRkYWJkOTgxYTFiNGFjOGQ1MDllNmNmYmM3OTYzYzE5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJkNjExMTg0OTg5Zjg0ODU0NWIxYjRkNGEzYjg5ZWQzZTQ5OTYzZmY1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:57 GMT", + "Date": "Sun, 17 Nov 2019 08:06:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4540", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4602", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"69eb62a9c29914f52f40bb04d2b16969\"", + "ETag": "\"49ea747777f5b1804a468ff2ff881ee8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/aba3c429eea23c343e466968901eb91711977f12", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -907,64 +718,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEF:2CFEA:66A24E3:7A5DB04:5DCBB9DC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A2:34216:1314880:169EB37:5DD0FFA0" }, - "response": "{\n \"sha\": \"aba3c429eea23c343e466968901eb91711977f12\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/aba3c429eea23c343e466968901eb91711977f12\"\n}\n", + "response": "{\n \"sha\": \"5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/655e3e2d44a81b7a0e54eb637e1466b4f08b0192?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:07:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4539", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9b087ab1ec83d19fa9bebacd38cb121b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF4:33B09:6988E40:7DFA9B5:5DCBB9DD", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ca8254012155a1318f34467fb93a0f941b57fc55\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8254012155a1318f34467fb93a0f941b57fc55\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"aba3c429eea23c343e466968901eb91711977f12\"}]}", + "body": "{\"base_tree\":\"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:58 GMT", + "Date": "Sun, 17 Nov 2019 08:06:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4538", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4601", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"659dc5bbd5102b6d456594ca319010bc\"", + "ETag": "\"645e61754d126a960186ab41e856b993\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/0ba89d1db6b43692fd5960f8880f4ca761f669d3", + "Location": "https://api.github.com/repos/owner/repo/git/trees/885716a44d708e5305009b4f45fff99cd14a6c2c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -974,31 +751,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF5:3A595:3DF3939:4A102C6:5DCBB9DE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A3:2E3EE:22EBA30:2973963:5DD0FFA0" }, - "response": "{\n \"sha\": \"0ba89d1db6b43692fd5960f8880f4ca761f669d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0ba89d1db6b43692fd5960f8880f4ca761f669d3\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"aba3c429eea23c343e466968901eb91711977f12\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/aba3c429eea23c343e466968901eb91711977f12\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"885716a44d708e5305009b4f45fff99cd14a6c2c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/885716a44d708e5305009b4f45fff99cd14a6c2c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5a2aa2a44ef14c2c5f102c78a8d84dd141a7c2fc\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0ba89d1db6b43692fd5960f8880f4ca761f669d3\",\"parents\":[\"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"885716a44d708e5305009b4f45fff99cd14a6c2c\",\"parents\":[\"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:07:59 GMT", + "Date": "Sun, 17 Nov 2019 08:06:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4537", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4600", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"817887ee0a1598f7da1777635726ff31\"", + "ETag": "\"a0016d5e90f9cdcf15a090e53463ce13\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/b2a8613499363c633c009cecaafc1fc7d217cd79", + "Location": "https://api.github.com/repos/owner/repo/git/commits/045e0135351094092545650160973f36451a3943", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1008,27 +784,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EFA:43EE8:91177A:AE2983:5DCBB9DE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A4:34218:2F02801:37B0719:5DD0FFA1" }, - "response": "{\n \"sha\": \"b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmIyYTg2MTM0OTkzNjNjNjMzYzAwOWNlY2FhZmMxZmM3ZDIxN2NkNzk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"html_url\": \"https://github.com/owner/repo/commit/b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:59Z\"\n },\n \"tree\": {\n \"sha\": \"0ba89d1db6b43692fd5960f8880f4ca761f669d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0ba89d1db6b43692fd5960f8880f4ca761f669d3\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\",\n \"html_url\": \"https://github.com/owner/repo/commit/655e3e2d44a81b7a0e54eb637e1466b4f08b0192\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"045e0135351094092545650160973f36451a3943\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjA0NWUwMTM1MzUxMDk0MDkyNTQ1NjUwMTYwOTczZjM2NDUxYTM5NDM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/045e0135351094092545650160973f36451a3943\",\n \"html_url\": \"https://github.com/owner/repo/commit/045e0135351094092545650160973f36451a3943\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:57Z\"\n },\n \"tree\": {\n \"sha\": \"885716a44d708e5305009b4f45fff99cd14a6c2c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/885716a44d708e5305009b4f45fff99cd14a6c2c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\",\n \"html_url\": \"https://github.com/owner/repo/commit/67ce8860b1cb7b4c7217cd52ad8f35eca4897bd8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"b2a8613499363c633c009cecaafc1fc7d217cd79\",\"force\":false}", + "body": "{\"sha\":\"045e0135351094092545650160973f36451a3943\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:01 GMT", + "Date": "Sun, 17 Nov 2019 08:06:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4536", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4599", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0cbcb1a0764d6c3eec6ec8b45ade0718\"", + "ETag": "W/\"87b7ac2011aec11a67862534ed297592\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1040,24 +815,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EFF:3A595:3DF3A88:4A1045B:5DCBB9DF", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A5:2E3ED:1374FCC:17391AE:5DD0FFA2", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b2a8613499363c633c009cecaafc1fc7d217cd79\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"045e0135351094092545650160973f36451a3943\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/045e0135351094092545650160973f36451a3943\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:01 GMT", + "Date": "Sun, 17 Nov 2019 08:07:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4535", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4598", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1069,9 +843,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F09:43EEE:1D9D9F2:2369662:5DCBB9E1", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A7:34218:2F02AFD:37B0A9D:5DD0FFA3", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1080,18 +853,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:01 GMT", + "Date": "Sun, 17 Nov 2019 08:07:00 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4534", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4597", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:07:52 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:06:52 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1103,26 +876,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0A:BBF8:6921C04:7D655DE:5DCBB9E1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A6:2E3F0:2FA0C71:3858483:5DD0FFA3" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=300", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:02 GMT", + "Date": "Sun, 17 Nov 2019 08:07:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4533", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4596", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1134,28 +906,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0B:3A596:659AD0D:795BF69:5DCBB9E2", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A9:34218:2F02C90:37B0C93:5DD0FFA4", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:02 GMT", + "Date": "Sun, 17 Nov 2019 08:07:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4532", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4595", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c1dff16ad3cc847a885c799abd5c68c2\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"7148fa6e03cd3be390de45b4dbe86238\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1168,27 +939,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F10:3A597:8E2E522:A902D73:5DCBB9E2", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AA:8072:2DD9197:36705EB:5DD0FFA4", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:04 GMT", + "Date": "Sun, 17 Nov 2019 08:07:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4531", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4594", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5b8da61c88c7097e4d6d8f4fd98db0df\"", + "ETag": "W/\"a669dbdae6fdd962bdb565b95a3ab8b1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1200,58 +970,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F15:33B09:69896B1:7DFB3AF:5DCBB9E3", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AB:34218:2F02E34:37B0E72:5DD0FFA5", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340296519,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2NTE5\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:07:54Z\",\n \"updated_at\": \"2019-11-13T08:07:54Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ce0de490523996a24977f909bdea346f8d5690e6\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:08:01Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:08:01Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341830704,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNzA0\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:06:54Z\",\n \"updated_at\": \"2019-11-17T08:06:54Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"586b70d977633d2fe8fd9136c7813b134c20f5e8\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:59Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:06:59Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d611184989f848545b1b4d4a3b89ed3e49963ff5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4530", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1A:43EF8:8A0106E:A459FA7:5DCBB9E4", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:04 GMT", + "Date": "Sun, 17 Nov 2019 08:07:02 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4529", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4593", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:07:52 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:06:52 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1263,8 +1003,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1B:43EE8:911897:AE2AD0:5DCBB9E4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AE:2E3F0:2FA103B:3858904:5DD0FFA6" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1273,13 +1012,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4528", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4592", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1291,9 +1030,67 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1E:2CFEA:66A2FFB:7A5E870:5DCBB9E4", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AF:470C5:8709F6:A076CF:5DD0FFA6", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4591", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18B0:8072:2DD9615:3670B23:5DD0FFA7", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4590", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18B3:1C98C:23524BC:29CD217:5DD0FFA7", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1302,18 +1099,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:03 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4527", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4589", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:07:52 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:06:52 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1325,26 +1122,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1D:450D6:6A30150:7E774FF:5DCBB9E4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B2:470CB:2CC8952:35035E6:5DD0FFA7" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=300", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4526", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4588", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1356,27 +1152,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1C:33B0A:8A87C43:A53F80D:5DCBB9E4", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B5:1C993:2D184D9:357FCF1:5DD0FFA7", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=300", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:05 GMT", + "Date": "Sun, 17 Nov 2019 08:07:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4525", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4587", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1388,43 +1183,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F23:33B09:6989A64:7DFB806:5DCBB9E5", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C0:470CB:2CC8E58:3503BD4:5DD0FFAA", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4524", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F2D:3A595:3DF41E5:4A10D2E:5DCBB9E7", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", "status": 200 }, { @@ -1432,17 +1194,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:10 GMT", + "Date": "Sun, 17 Nov 2019 08:07:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4523", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4586", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fb80f25a4383c0f4a78633c57bba85ca\"", + "ETag": "\"105c00c2af0f1516bc0e95df215fa236\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1455,58 +1217,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F36:2CFEA:66A36E4:7A5F0AD:5DCBB9EA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C1:2E3F0:2FA196A:38593F9:5DD0FFAB" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4522", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3B:2CFEA:66A3782:7A5F16B:5DCBB9EA", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:11 GMT", + "Date": "Sun, 17 Nov 2019 08:07:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4521", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4585", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6476f74e92db3dd829586c4f1c169510\"", + "ETag": "W/\"1469ae44418051406e4cfab07b7a32fa\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1518,27 +1247,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3C:450D6:6A309BE:7E77EF1:5DCBB9EA", - "content-length": "4815", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C3:2E3EC:7A60B2:92AF45:5DD0FFAC", + "content-length": "4815" }, - "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmM3NWQxN2M1ZGRhYmQ5ODFhMWI0YWM4ZDUwOWU2Y2ZiYzc5NjNjMTk=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"html_url\": \"https://github.com/owner/repo/commit/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OmQ2MTExODQ5ODlmODQ4NTQ1YjFiNGQ0YTNiODllZDNlNDk5NjNmZjU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"html_url\": \"https://github.com/owner/repo/commit/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=600", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:11 GMT", + "Date": "Sun, 17 Nov 2019 08:07:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4520", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4584", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1550,228 +1278,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3E:3A596:659B9A2:795CE65:5DCBB9EB", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C4:470CB:2CC9181:3503F94:5DD0FFAC", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:11 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4519", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9baa07126941fcb66866536a6cf9dcc5\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F43:33B0A:8A887E3:A540602:5DCBB9EB", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4518", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"199b3c6c7d3f2bcfc45c22baa81f7770\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F44:450D6:6A30B96:7E7811D:5DCBB9EC", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4517", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f5e9fab5889373d1ac19193c49a67ea\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F49:450E4:8976F9B:A3BF385:5DCBB9EC", - "content-length": "2362", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4516", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1cd64a47b3f4a9bafb07183016028ca5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4B:3A596:659BC32:795D177:5DCBB9ED", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4515", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4F:43EEE:1D9DFA3:2369D1C:5DCBB9ED", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4514", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"982343f7b65a7e80fe70e4020484fe0a\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F50:BBF8:6922B32:7D6682D:5DCBB9ED", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:15 GMT", + "Date": "Sun, 17 Nov 2019 08:07:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4513", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4583", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"05a5054793cf8e66ac9f471b430e9175\"", + "ETag": "\"83db8c727f61c729c765f4403bcc4cc9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", @@ -1784,60 +1312,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F55:450D5:3AE7C64:4684B97:5DCBB9EE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C6:8070:22A5911:2925B2B:5DD0FFAC" }, "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, - { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1504", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4512", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c32ce3c329b62903b4e6128db14a02cd\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5A:33B0A:8A88EE9:A540E67:5DCBB9EF", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjM0MmFjYmU3M2MxNWUzOTMyYWM5ZmJiM2EzZWE5ZmUwNzA4MmUwMmY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"html_url\": \"https://github.com/owner/repo/commit/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:08:15Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:08:15Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"html_url\": \"https://github.com/owner/repo/commit/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, { "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=600", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:16 GMT", + "Date": "Sun, 17 Nov 2019 08:07:09 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4511", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4582", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1849,28 +1342,91 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5B:450D6:6A3116A:7E787DC:5DCBB9F0", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18C7:2E3EE:22ECA99:2974C9F:5DD0FFAD", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"d611184989f848545b1b4d4a3b89ed3e49963ff5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4581", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"268637923ffd0a59c7295df386201c01\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18C8:1C98C:2352D34:29CDC01:5DD0FFAD" + }, + "response": "{\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0Ojg3NDRmNjY2Y2M4MjU2NDEzOWIwM2EzYjBlYWFjOWIwOWRiMWRiZDc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"html_url\": \"https://github.com/owner/repo/commit/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:09Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"html_url\": \"https://github.com/owner/repo/commit/d611184989f848545b1b4d4a3b89ed3e49963ff5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4580", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"74f6999453da3d2bb6a923be02fa8e5b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18C9:34217:2311CFD:29ABEE4:5DD0FFAE", + "content-length": "5379" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls/2/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:16 GMT", + "Date": "Sun, 17 Nov 2019 08:07:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4510", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4579", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6115e4a408c615fa27884bd2ea062de5\"", - "Last-Modified": "Wed, 13 Nov 2019 08:07:54 GMT", + "ETag": "W/\"a3afe2b0180dd0fe0acb88916c884bd2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:06:54 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1882,92 +1438,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F61:BBF5:3C3DEA2:47FE4C1:5DCBB9F0", - "content-length": "4157", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CA:2E3EE:22ECBA6:2974DD1:5DD0FFAE", + "content-length": "4157" }, - "response": "[\n {\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OmM3NWQxN2M1ZGRhYmQ5ODFhMWI0YWM4ZDUwOWU2Y2ZiYzc5NjNjMTk=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:07:52Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"html_url\": \"https://github.com/owner/repo/commit/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4509", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e26e4e53c9a4bcc98ef07c3ab1f4e6ab\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F64:BBFA:87E7A97:A290400:5DCBB9F0", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c75d17c5ddabd981a1b4ac8d509e6cfbc7963c19/status\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/branches/master?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4508", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ca6df3e2b807aab3be313d613fe0b5e4\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F60:33B09:698A8DE:7DFC95D:5DCBB9F0", - "content-length": "5379", - "connection": "keep-alive" - }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "[\n {\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OmQ2MTExODQ5ODlmODQ4NTQ1YjFiNGQ0YTNiODllZDNlNDk5NjNmZjU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:06:52Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"html_url\": \"https://github.com/owner/repo/commit/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:17 GMT", + "Date": "Sun, 17 Nov 2019 08:07:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4507", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4578", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0cbcb1a0764d6c3eec6ec8b45ade0718\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"87b7ac2011aec11a67862534ed297592\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1980,32 +1471,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F67:43EEE:1D9E174:2369F3D:5DCBB9F1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CC:23E1B:2E425C7:36D24E3:5DD0FFAE", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b2a8613499363c633c009cecaafc1fc7d217cd79\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"045e0135351094092545650160973f36451a3943\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/045e0135351094092545650160973f36451a3943\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiIzNDJhY2JlNzNjMTVlMzkzMmFjOWZiYjNhM2VhOWZlMDcwODJlMDJmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI4NzQ0ZjY2NmNjODI1NjQxMzliMDNhM2IwZWFhYzliMDlkYjFkYmQ3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:18 GMT", + "Date": "Sun, 17 Nov 2019 08:07:11 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4506", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4577", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"386e0da458dc65c43e59f30e1b7a0c5e\"", + "ETag": "\"5cbd13f2e5dc016230b17df624aa8241\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/9cff8990f58fe3ee7133a2dfc885f9c11a310758", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/7640731dd47a1d0d3ea540fd84e51275d90665a8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2015,193 +1505,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F70:2CFED:90440B2:ABBF48B:5DCBB9F1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CD:8072:2DDA438:3671B78:5DD0FFAF" }, - "response": "{\n \"sha\": \"9cff8990f58fe3ee7133a2dfc885f9c11a310758\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9cff8990f58fe3ee7133a2dfc885f9c11a310758\"\n}\n", + "response": "{\n \"sha\": \"7640731dd47a1d0d3ea540fd84e51275d90665a8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7640731dd47a1d0d3ea540fd84e51275d90665a8\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/git/trees/b2a8613499363c633c009cecaafc1fc7d217cd79?ts=600", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:18 GMT", + "Date": "Sun, 17 Nov 2019 08:07:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4505", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4576", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"65fd189fd49eb81ae4057dd83fc030ec\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F71:43EF8:8A02655:A45BA16:5DCBB9F2", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"aba3c429eea23c343e466968901eb91711977f12\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/aba3c429eea23c343e466968901eb91711977f12\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"b2a8613499363c633c009cecaafc1fc7d217cd79\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"9cff8990f58fe3ee7133a2dfc885f9c11a310758\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4504", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"71adc93d5c8aa9d9017714d2b9401747\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F75:43EF8:8A02723:A45BB1E:5DCBB9F3", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9cff8990f58fe3ee7133a2dfc885f9c11a310758\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9cff8990f58fe3ee7133a2dfc885f9c11a310758\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c\",\"parents\":[\"b2a8613499363c633c009cecaafc1fc7d217cd79\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4503", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"90e35dd5b9e8533e4d8040bc5a49f3ed\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/0f5afda35f53bb5e691cb615fad36a51ef839cee", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7B:2CFEA:66A423B:7A5FE81:5DCBB9F3", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA0OTA5OjBmNWFmZGEzNWY1M2JiNWU2OTFjYjYxNWZhZDM2YTUxZWY4MzljZWU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"html_url\": \"https://github.com/owner/repo/commit/0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:08:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:08:20Z\"\n },\n \"tree\": {\n \"sha\": \"b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b01ffc2f2c875d3a5b9b5495c4a5b956ba05e96c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b2a8613499363c633c009cecaafc1fc7d217cd79\",\n \"html_url\": \"https://github.com/owner/repo/commit/b2a8613499363c633c009cecaafc1fc7d217cd79\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"sha\":\"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4502", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f1591a9aee1400b53c84889af8228329\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7F:450E4:8977C24:A3C0296:5DCBB9F4", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0f5afda35f53bb5e691cb615fad36a51ef839cee\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0f5afda35f53bb5e691cb615fad36a51ef839cee\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\"force\":true}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4501", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1ac3ceda8203c2ffeb486c5b75669e06\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F84:2CFED:90446D3:ABBFC01:5DCBB9F5", - "content-length": "518", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4500", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b8f933bba1e9a1de24761d73f3933221\"", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2213,28 +1535,250 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F89:BBFA:87E8374:A290ED2:5DCBB9F6", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18CE:34217:2311F06:29AC13F:5DD0FFB0", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"045e0135351094092545650160973f36451a3943\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7640731dd47a1d0d3ea540fd84e51275d90665a8\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4575", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a20e7c13365423c0b533a67dff93fea1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/51e996cdc795cf4a3a409f323f45c84c084fe5ef", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18C1:2E3EE:22ECD78:2974FEE:5DD0FFB0" + }, + "response": "{\n \"sha\": \"51e996cdc795cf4a3a409f323f45c84c084fe5ef\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/51e996cdc795cf4a3a409f323f45c84c084fe5ef\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7640731dd47a1d0d3ea540fd84e51275d90665a8\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7640731dd47a1d0d3ea540fd84e51275d90665a8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"51e996cdc795cf4a3a409f323f45c84c084fe5ef\",\"parents\":[\"045e0135351094092545650160973f36451a3943\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4574", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8f79262763586f3a72674733112e3794\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/51a427078669c1b2ea91920f96c92a1f2b942e76", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18CF:470CB:2CC96F6:350461C:5DD0FFB0" + }, + "response": "{\n \"sha\": \"51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE2MjA0OjUxYTQyNzA3ODY2OWMxYjJlYTkxOTIwZjk2YzkyYTFmMmI5NDJlNzY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"html_url\": \"https://github.com/owner/repo/commit/51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:13Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:07:13Z\"\n },\n \"tree\": {\n \"sha\": \"51e996cdc795cf4a3a409f323f45c84c084fe5ef\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/51e996cdc795cf4a3a409f323f45c84c084fe5ef\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"045e0135351094092545650160973f36451a3943\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/045e0135351094092545650160973f36451a3943\",\n \"html_url\": \"https://github.com/owner/repo/commit/045e0135351094092545650160973f36451a3943\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"51a427078669c1b2ea91920f96c92a1f2b942e76\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4573", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2a6c91644783be65ce544cfdf91df883\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18D0:23E19:13EE235:17957F6:5DD0FFB1", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"51a427078669c1b2ea91920f96c92a1f2b942e76\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51a427078669c1b2ea91920f96c92a1f2b942e76\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4572", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0ddb1586ea69e98c1411455e6c2e6928\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18D1:23E1A:21A80C4:27F4DB8:5DD0FFB2", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d611184989f848545b1b4d4a3b89ed3e49963ff5/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4571", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5a43cabbca3bb033210d8772a193a06\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18D2:1C993:2D196EC:3581210:5DD0FFB2", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4570", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"715199a4ea47cf0ae6979ea70511af26\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18C9:34218:2F043CD:37B2796:5DD0FFB2", + "content-length": "518" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4569", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5a43cabbca3bb033210d8772a193a06\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18D3:470CB:2CC9A89:3504A63:5DD0FFB3", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:23 GMT", + "Date": "Sun, 17 Nov 2019 08:07:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4499", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4568", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"432fca51f776075c06f1b18fd5e6a658\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"0ce9df96603645d3a5d758b4b11092be\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2247,27 +1791,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8A:3A594:1BB2CAA:213E146:5DCBB9F7", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D4:34217:23122D9:29AC5D2:5DD0FFB3", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA0OTA5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE2MjA0OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:23 GMT", + "Date": "Sun, 17 Nov 2019 08:07:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4498", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4567", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a09cfa77ac63a0e0ab806c86f089e25e\"", + "ETag": "W/\"6c55f41b3887a77fb144fa3eca21cd45\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2279,58 +1822,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8F:450E4:8978127:A3C0887:5DCBB9F7", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D5:23E1A:21A82AB:27F5012:5DD0FFB4", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340296519,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk2NTE5\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:07:54Z\",\n \"updated_at\": \"2019-11-13T08:08:23Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ce0de490523996a24977f909bdea346f8d5690e6\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:08:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:08:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341830704,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMwNzA0\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:06:54Z\",\n \"updated_at\": \"2019-11-17T08:07:16Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"586b70d977633d2fe8fd9136c7813b134c20f5e8\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:07:16Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:07:16Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/8744f666cc82564139b03a3b0eaac9b09db1dbd7\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:08:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4497", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F92:3A597:8E30C88:A905BDD:5DCBB9F8", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:24 GMT", + "Date": "Sun, 17 Nov 2019 08:07:17 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4496", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4565", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", - "Last-Modified": "Wed, 13 Nov 2019 08:08:15 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:07:09 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2342,26 +1855,53 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F91:43EF6:6772456:7B7ED9F:5DCBB9F8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D6:34215:789AC7:906926:5DD0FFB5" }, "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status?ts=600", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:28 GMT", + "Date": "Sun, 17 Nov 2019 08:07:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4566", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18D7:23E1B:2E42FE3:36D30AA:5DD0FFB5", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:07:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4491", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4560", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b8f933bba1e9a1de24761d73f3933221\"", + "ETag": "W/\"c5a43cabbca3bb033210d8772a193a06\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2373,27 +1913,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAF:BBFA:87E8B81:A291866:5DCBB9FC", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D9:23E1B:2E43600:36D37CE:5DD0FFB9", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status?ts=600", + "url": "/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:08:34 GMT", + "Date": "Sun, 17 Nov 2019 08:07:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4490", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4559", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b8f933bba1e9a1de24761d73f3933221\"", + "ETag": "W/\"c5a43cabbca3bb033210d8772a193a06\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2405,11 +1944,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC7:BBFA:87E93F0:A292263:5DCBBA01", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D6:34217:2312DFD:29AD315:5DD0FFBE", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/342acbe73c15e3932ac9fbb3a3ea9fe07082e02f/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8744f666cc82564139b03a3b0eaac9b09db1dbd7/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json index dad59633..a6e2182d 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json @@ -3,166 +3,13 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:13 GMT", + "Date": "Sun, 17 Nov 2019 08:08:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4933", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8a3286f2d74580ee9474dc35965fadc1\"", - "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC4:3A597:8E3C215:A913602:5DCBBA65", - "content-length": "1333", - "connection": "keep-alive" - }, - "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/collaborators/forkOwner/permission", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "403 Forbidden", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4932", - "X-RateLimit-Reset": "1573635352", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCC:3A594:1BB5614:2141358:5DCBBA66", - "content-length": "185", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", - "status": 403 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:14 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4931", - "X-RateLimit-Reset": "1573635352", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCD:33B09:6993E6D:7E07D37:5DCBBA66", - "content-length": "98", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/#get\"\n}\n", - "status": 404 - }, - { - "method": "POST", - "url": "/repos/owner/repo/forks", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "22055", - "Server": "GitHub.com", - "Status": "202 Accepted", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4930", - "X-RateLimit-Reset": "1573635352", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD2:33B0A:8A94045:A54E723:5DCBBA67", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 202 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4929", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0edd9a376109bbe1bcfdbc3e89df3b4d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDC:3A596:65A4D65:796818C:5DCBBA68", - "content-length": "22145", - "connection": "keep-alive" - }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/user?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4928", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"9dc0702d58c544eda3415741fb04e305\"", @@ -178,28 +25,51 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FDD:33B08:3EDF444:4B05076:5DCBBA69", - "content-length": "1333", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1950:470CB:2CD090C:350D108:5DD1001A", + "content-length": "1333" }, "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo?ts=0", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:18 GMT", + "Date": "Sun, 17 Nov 2019 08:08:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "200 OK", + "Status": "403 Forbidden", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4927", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ab0c4d99bc5e0aa55ac2fb3a22cd1d13\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1955:2E3EE:22F3FE2:297D79E:5DD1001B", + "content-length": "185" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 08:08:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -211,28 +81,24 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE1:33B09:69942D9:7E08283:5DCBBA69", - "content-length": "22145", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1956:1C98C:2359773:29D5B97:5DD1001B", + "content-length": "98" }, - "response": "{\n \"id\": 221405839,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDU4Mzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:10:15Z\",\n \"updated_at\": \"2019-11-13T08:10:17Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:09:48Z\",\n \"pushed_at\": \"2019-11-13T08:09:46Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", - "status": 200 + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/#get\"\n}\n", + "status": 404 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", + "method": "POST", + "url": "/repos/owner/repo/forks", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:18 GMT", + "Date": "Sun, 17 Nov 2019 08:09:01 GMT", "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", "Server": "GitHub.com", - "Status": "200 OK", + "Status": "202 Accepted", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4926", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"afaa49d0c9b7bcc8328f407de7bfccdd\"", - "Last-Modified": "Wed, 13 Nov 2019 08:09:48 GMT", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -244,9 +110,135 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE4:33B0A:8A945A1:A54ED9C:5DCBBA6A", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1957:34218:2F0DAB0:37BDA66:5DD1001C" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"36d8462b2e5e2d21a9f60328cdfd3fe9\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1958:8072:2DE3B4C:367CEB6:5DD1001D", + "content-length": "22145" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c3ed5ade959d6ac74bd6fa427e8147bd\"", + "Last-Modified": "Thu, 24 Oct 2019 11:03:33 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1959:2E3F0:2FA9FFA:3863801:5DD1001E", + "content-length": "1333" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea03e13a5274b65d5f7273de45fd8481\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "195A:806E:1373EA4:1722AD2:5DD1001E", + "content-length": "22145" + }, + "response": "{\n \"id\": 222216630,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTY2MzA=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:09:00Z\",\n \"updated_at\": \"2019-11-17T08:09:02Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:08:33Z\",\n \"pushed_at\": \"2019-11-17T08:08:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d032b56a5fb3e33af271cf38040cab72\"", + "Last-Modified": "Sun, 17 Nov 2019 08:08:33 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "195C:470C9:2271F2B:28ED084:5DD1001F", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -255,17 +247,17 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:18 GMT", + "Date": "Sun, 17 Nov 2019 08:09:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4925", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e075715fd8bd8ebfcee0c977aed402a3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:10:17 GMT", + "ETag": "W/\"79ec3ea98319636cf9a6f7ef89f24fc2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:09:02 GMT", "X-OAuth-Scopes": "delete_repo, public_repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -277,9 +269,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE7:450D6:6A3AB20:7E840E4:5DCBBA6A", - "content-length": "3539", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195F:23E1B:2E4C5BE:36DE200:5DD1001F", + "content-length": "3539" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -288,13 +279,13 @@ "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:19 GMT", + "Date": "Sun, 17 Nov 2019 08:09:04 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4924", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"a364f76f680e7196df8bced481ddcabc\"", @@ -309,88 +300,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF0:BBEA:9E5267:BE50F0:5DCBBA6B", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1964:1C98C:2359D75:29D6291:5DD10020", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:19 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4923", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF4:33B09:69944B0:7E084C3:5DCBBA6B", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:10:19 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4922", - "X-RateLimit-Reset": "1573635352", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", - "X-OAuth-Scopes": "delete_repo, public_repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF1:BBF5:3C43D44:48056AB:5DCBBA6B", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, { "method": "GET", "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:19 GMT", + "Date": "Sun, 17 Nov 2019 08:09:04 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4921", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"bd8cecd81fe43295f14669cfe90d86c5\"", @@ -405,24 +331,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEF:450E4:8982C8A:A3CDA09:5DCBBA6B", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1965:2E3F0:2FAA35C:3863C05:5DD10020", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:10:19 GMT", + "Date": "Sun, 17 Nov 2019 08:09:04 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4920", - "X-RateLimit-Reset": "1573635352", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4cd54536ca3dda25f2ab884d7dbe300a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1967:2E3F0:2FAA35D:3863C07:5DD10020", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:04 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"fcf7836dded3d69d01751fed36a69248\"", @@ -437,11 +393,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF7:33B09:69944B9:7E084CE:5DCBBA6B", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1968:8072:2DE4005:367D43E:5DD10020", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:09:04 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4713628a518bbf090a74d3fa10e55827\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1966:34218:2F0E1FD:37BE2D8:5DD10020", + "content-length": "2565" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json index af2e03c2..f4b4dfc8 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:00 GMT", + "Date": "Sun, 17 Nov 2019 08:05:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4627", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4678", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E63:3A596:65920ED:79515A3:5DCBB967", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:8070:229F109:291DDAB:5DD0FF3F", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,13 +35,13 @@ "method": "GET", "url": "/repos/owner/repo/collaborators/owner/permission", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:00 GMT", + "Date": "Sun, 17 Nov 2019 08:05:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4626", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"b0c7ca4902ddcfd186497763d8e52620\"", @@ -57,9 +56,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E68:2CFEA:6699730:7A53084:5DCBB968", - "content-length": "1071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CF:23E1B:2E38A7E:36C6CC1:5DD0FF3F", + "content-length": "1071" }, "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", "status": 200 @@ -68,16 +66,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:01 GMT", + "Date": "Sun, 17 Nov 2019 08:05:20 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4625", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4676", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3044dbddb76593c2226b3192d1604131\"", + "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -90,9 +88,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6D:3A595:3DED516:4A08C1E:5DCBB968", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D0:1C993:2D0FD20:3575A88:5DD0FF40", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -101,17 +98,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:02 GMT", + "Date": "Sun, 17 Nov 2019 08:05:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4624", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"328fefbc290cee5f22bbc82708e27286\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"8f09a9b26c505bdf8238f2a2f3b0c5b0\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -123,28 +120,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6E:BBF8:6919561:7D5B11F:5DCBB969", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D1:23E1A:21A2079:27ED88B:5DD0FF40", + "content-length": "7296" }, - "response": "{\n \"id\": 221404909,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDQ5MDk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:05:20Z\",\n \"updated_at\": \"2019-11-13T08:05:49Z\",\n \"pushed_at\": \"2019-11-13T08:05:45Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222216204,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTYyMDQ=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:04:43Z\",\n \"updated_at\": \"2019-11-17T08:05:11Z\",\n \"pushed_at\": \"2019-11-17T08:05:06Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:02 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4622", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"763e1d84f682f0f5ebf505b50b9779c3\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"86071b9029874793ef66b7f15d4a54e6\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -156,9 +152,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E81:33B0A:8A7C157:A5314DA:5DCBB96A", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19DA:470C5:86EEDF:A056F8:5DD0FF41", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -167,17 +162,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:02 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4621", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4672", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0fdf5cd0f3854ddcb55c95a2b0effaaf\"", - "Last-Modified": "Wed, 13 Nov 2019 08:05:49 GMT", + "ETag": "W/\"2dfa0842502045aa73be369037322600\"", + "Last-Modified": "Sun, 17 Nov 2019 08:05:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -189,9 +184,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E83:3A596:659251A:7951AB9:5DCBB96A", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E1:23E1A:21A2176:27ED9C4:5DD0FF41", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -200,13 +194,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:03 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4619", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4670", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -221,9 +215,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E96:3A597:8E21727:A8F3857:5DCBB96B", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F0:34218:2EFA2C7:37A6905:5DD0FF42", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -232,13 +225,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:03 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4618", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4669", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -253,9 +246,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E95:2CFE8:3E9BE16:4B1DD3A:5DCBB96B", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19EF:23E1B:2E38DD7:36C70B5:5DD0FF42", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -264,13 +256,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:03 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4617", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4668", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", @@ -285,56 +277,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E97:2CFED:903594A:ABAE07D:5DCBB96B", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F1:1C993:2D0FF6A:3575D5D:5DD0FF42", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:06:03 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4616", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E98:33B08:3ED3198:4AF659B:5DCBB96B", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:06:03 GMT", + "Date": "Sun, 17 Nov 2019 08:05:22 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4615", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4667", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", @@ -349,11 +308,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E99:33B0A:8A7C2BF:A531693:5DCBB96B", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F5:2E3F0:2F99626:384F59F:5DD0FF42", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:05:23 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4666", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19F6:23E1A:21A2268:27EDAE5:5DD0FF42", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json index 6735986c..24314a01 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:44 GMT", + "Date": "Sun, 17 Nov 2019 08:27:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3861", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4025", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", - "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", + "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC3:9D21:17CD43B:1D02869:5D77B088", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184A:2E3EE:233D302:29D46DB:5DD10480", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:45 GMT", + "Date": "Sun, 17 Nov 2019 08:27:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3860", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4024", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2d51f1015bcbf52e2eaac1147f0ea132\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"e2eb10d46ea463f5cba7341a4601d27a\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC5:2B24:1865F86:1DAA8F6:5D77B088", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1853:34217:2362239:2A0BB22:5DD10481", + "content-length": "7296" }, - "response": "{\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:27:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:46 GMT", + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3859", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4023", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,28 +89,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACE:244DF:1B65D3:21611E:5D77B089", - "content-length": "7422", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185B:23E1B:2EB0059:3753FA3:5DD10481", + "content-length": "2030" }, - "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:47 GMT", + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3858", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4022", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,27 +121,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFF:3ED82:1911CEA:1E83D4A:5D77B08A", - "content-length": "12362", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185C:470CB:2D26383:3573E7A:5DD10481", + "content-length": "3484" }, - "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:47 GMT", + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3857", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4021", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -156,27 +152,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B00:15110:191DC79:1E864E9:5D77B08A", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185E:8072:2E3E491:36E996F:5DD10482", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3856", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4020", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -188,9 +183,70 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B12:9D1F:A7740B:CC6958:5D77B08D", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185F:23E19:1419756:17C9134:5DD10482", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4019", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1862:34214:28A7E5:30C057:5DD10482", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4018", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1861:34218:2F65705:3827AEE:5DD10482", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -199,16 +255,16 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Date": "Sun, 17 Nov 2019 08:27:46 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3855", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4017", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -220,88 +276,55 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B10:9D1E:4DF698:5F6DF9:5D77B08D", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1860:806E:139AD4E:17513E7:5DD10482", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:49 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3854", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0E:2B1F:1299E0E:16B61B7:5D77B08D", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:49 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3853", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0A:3ED77:B06047:D5E509:5D77B08D", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:50 GMT", + "Date": "Sun, 17 Nov 2019 08:27:50 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4016", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"49e544fb057bdaed92d1c485f00c539fd7a4fc31\"", + "Last-Modified": "Sun, 17 Nov 2019 08:27:25 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1880:1C985:135E9E9:1706BAE:5DD10486" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":4,\"head\":\"4ec563a377588964d6a810526269b3ad89c2e5eb\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3852", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4015", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -313,24 +336,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B1E:2B1F:1299F8D:16B63A4:5D77B08E", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1884:8070:22F4AEB:298403F:5DD10486", + "content-length": "148" }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:51 GMT", + "Date": "Sun, 17 Nov 2019 08:27:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3851", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4014", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -342,9 +364,36 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B20:244E7:121852A:1617096:5D77B08E", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1885:1C98C:23AA7A4:2A34A5A:5DD10486", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4013", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1889:1C98C:23AA840:2A34B07:5DD10487", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -354,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:52 GMT", + "Date": "Sun, 17 Nov 2019 08:27:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3850", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4012", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"56278cbfc941dbec3b319d0166c9cc7b\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -377,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B22:244EB:18A014C:1DECA45:5D77B08F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188A:34216:133F60B:16D1B4D:5DD10487" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -387,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:52 GMT", + "Date": "Sun, 17 Nov 2019 08:27:52 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3849", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4011", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -408,199 +456,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B25:1510F:12A5AFA:16A48BE:5D77B090", - "content-length": "5961", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188F:2E3EE:233D940:29D4E88:5DD10488", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:53 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3848", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B26:15110:191E5DC:1E8709B:5D77B090", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3847", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B29:2B24:1866F20:1DABBF0:5D77B091", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3846", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2B:3ED82:191293E:1E84C9E:5D77B092", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3845", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b28180134119c0b683e80c479dff53ba\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2E:1510E:B12195:D7EDE3:5D77B092", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3844", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ac2ee1d6ea4a29f123de5385b2d9bc3f\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2F:244E1:54313B:65ADD6:5D77B093", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:17:56 GMT", + "Date": "Sun, 17 Nov 2019 08:27:53 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3843", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4010", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"314155516246819260b67a40bcc0f1d6\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -610,31 +490,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B30:9D1E:4DF8FF:5F70F7:5D77B094", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1894:1C993:2D8245B:35FD830:5DD10489" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:57 GMT", + "Date": "Sun, 17 Nov 2019 08:27:54 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3842", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4009", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"410cc6552ecd1135d7fb49644d537993\"", + "ETag": "\"adc9d8a28fc66a659aa79cb0aeab9e83\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91", + "Location": "https://api.github.com/repos/owner/repo/git/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -644,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B33:9D1F:A77A59:CC7116:5D77B095", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1897:470C7:14E5BC1:18A42CF:5DD10489" }, - "response": "{\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmViYzQ1NmYwMzI0NzM1OTM0NGE3MjJkMjY0NGI4MDE5NjBiYzllOTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"html_url\": \"https://github.com/owner/repo/commit/ebc456f03247359344a722d2644b801960bc9e91\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:17:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:17:57Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjU5ZTdjNDZlYmRkM2M4ZWQ5YjBhNGI3YWRkZTQ3YjAwZjM3YWUyYzU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"html_url\": \"https://github.com/owner/repo/commit/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:54Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:54Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"ebc456f03247359344a722d2644b801960bc9e91\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:17:58 GMT", + "Date": "Sun, 17 Nov 2019 08:27:55 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3841", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4008", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2b8771049f92b725a5aa919ea2278122\"", + "ETag": "\"a5f50ed3c73c5ae0c193a359202b02e5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -678,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B35:3ED77:B06663:D5ECB5:5D77B095", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189A:1C981:8DBE89:A7D163:5DD1048A" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n}\n", "status": 201 }, { @@ -689,20 +566,20 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:00 GMT", + "Date": "Sun, 17 Nov 2019 08:27:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3840", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4007", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"95c58e76db243092c46b31e666a35c05\"", + "ETag": "\"5d52302b1b027fea305ae075907089a1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "Location": "https://api.github.com/repos/owner/repo/pulls/5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -712,23 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B36:1510F:12A6309:16A529A:5D77B096", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189F:34217:2362D39:2A0C81F:5DD1048B" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 341831960,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTYw\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:27:56Z\",\n \"updated_at\": \"2019-11-17T08:27:56Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:27:55Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:27:55Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:00 GMT", + "Date": "Sun, 17 Nov 2019 08:27:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3839", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4006", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1fe343916ba50a0af2fc10d1e6dfb579\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -741,235 +621,64 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B3E:2B1F:129AD24:16B7464:5D77B098", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AB:34218:2F66280:38288F0:5DD1048D", + "content-length": "484" }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", - "status": 404 - }, - { - "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3838", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"947a7cc56c2d56bcb652e4051ff67fc1\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B3F:244EB:18A11D6:1DEDE76:5D77B099", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", - "status": 201 - }, - { - "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:02 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "561", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3837", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"86bb7e28d0b7e58e123b7e11ea82f562\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B40:9D20:11C1AA1:15B9188:5D77B099", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:03 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1105", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3836", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7318619e43f002e86284ccd24e490bd4\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B42:2B1F:129B099:16B789B:5D77B09A", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmZkZjhjNjZlMDVlNGI4NjVmMDY4MGY1ZTcwZWFlNGMwODRlOGI5NGM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"html_url\": \"https://github.com/owner/repo/commit/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:03Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"}", - "method": "POST", - "url": "/repos/owner/repo/git/refs?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "484", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3835", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dd9e8f28da4864e30bfde0e660977dba\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B44:15110:191F8A0:1E887C1:5D77B09B", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"\n }\n}\n", - "status": 201 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJlYmM0NTZmMDMyNDczNTkzNDRhNzIyZDI2NDRiODAxOTYwYmM5ZTkxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:05 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3834", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e0a3000af7ad02bfc6d9df45291d162d\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B46:B4D7:1B5A1B:21772D:5D77B09C", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:06 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3833", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"509b180898a37638365f1e767362b3ca\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B48:2B15:50A29D:61ED25:5D77B09D", - "content-length": "561", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"93f249af8f3fd9707771f5a018e82b7b553ebd0a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/93f249af8f3fd9707771f5a018e82b7b553ebd0a\"\n }\n}\n", "status": 200 }, { - "body": "{\"base_tree\":\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"11fcdfb32c7f713ad750051185f7cf96432d9e9e\"}]}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOiI1OWU3YzQ2ZWJkZDNjOGVkOWIwYTRiN2FkZGU0N2IwMGYzN2FlMmM1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4005", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a8d6657aa93195432a85527a3ff5cda8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18AC:2E3F0:300EC67:38DAE18:5DD1048D" + }, + "response": "{\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93f249af8f3fd9707771f5a018e82b7b553ebd0a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"e2420ec3a38609ae26d144015f2026da091b4d73\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:06 GMT", + "Date": "Sun, 17 Nov 2019 08:27:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3832", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4004", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"91d05e3a9430402fb55c78474301025f\"", + "ETag": "\"08506cdd7dec0e40ac7e43cae32b452b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4446c57446fa69987b28c38c3b0955497f7432f9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -979,31 +688,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4A:244E4:B3BC29:D9EAAA:5D77B09E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AE:2E3ED:13A3F2C:1770EBF:5DD1048E" }, - "response": "{\n \"sha\": \"0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"4446c57446fa69987b28c38c3b0955497f7432f9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4446c57446fa69987b28c38c3b0955497f7432f9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0436d8c96af42b7f545fade7cee919d607ce161d\",\"parents\":[\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"4446c57446fa69987b28c38c3b0955497f7432f9\",\"parents\":[\"93f249af8f3fd9707771f5a018e82b7b553ebd0a\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:07 GMT", + "Date": "Sun, 17 Nov 2019 08:27:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3831", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4003", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7b679bb013f6bec4d7df259694332dcd\"", + "ETag": "\"a01734bba710a4984a6dfa3b94c9e561\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb", + "Location": "https://api.github.com/repos/owner/repo/git/commits/bba273eed7507bad46a72de64cffc2a9f5998a61", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1013,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4C:3ED82:1913F8D:1E86836:5D77B09F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B8:2E3ED:13A3F99:1770F41:5DD1048F" }, - "response": "{\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjM4ZTgxYjg2Y2NmMDE5ZDdhMGQxMTExYmU0N2FmNjI2MjIyMzVlZGI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"html_url\": \"https://github.com/owner/repo/commit/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:07Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:07Z\"\n },\n \"tree\": {\n \"sha\": \"0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"html_url\": \"https://github.com/owner/repo/commit/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmJiYTI3M2VlZDc1MDdiYWQ0NmE3MmRlNjRjZmZjMmE5ZjU5OThhNjE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"html_url\": \"https://github.com/owner/repo/commit/bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:59Z\"\n },\n \"tree\": {\n \"sha\": \"4446c57446fa69987b28c38c3b0955497f7432f9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4446c57446fa69987b28c38c3b0955497f7432f9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"93f249af8f3fd9707771f5a018e82b7b553ebd0a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/93f249af8f3fd9707771f5a018e82b7b553ebd0a\",\n \"html_url\": \"https://github.com/owner/repo/commit/93f249af8f3fd9707771f5a018e82b7b553ebd0a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"38e81b86ccf019d7a0d1111be47af62622235edb\",\"force\":false}", + "body": "{\"sha\":\"bba273eed7507bad46a72de64cffc2a9f5998a61\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Date": "Sun, 17 Nov 2019 08:28:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3830", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4002", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cae09ac0f1593384e689fe006940565a\"", + "ETag": "W/\"22607a2fc03f06c84be6aca24ac03c4b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1045,24 +752,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4E:3ED82:1914139:1E86A3A:5D77B09F", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18B9:23E19:1419FE9:17C9B49:5DD1048F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bba273eed7507bad46a72de64cffc2a9f5998a61\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Date": "Sun, 17 Nov 2019 08:28:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3829", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4001", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1074,9 +780,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B50:3ED82:19145C5:1E86FE5:5D77B0A2", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BD:1C985:135EEF7:17071E7:5DD10491", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1085,18 +790,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Date": "Sun, 17 Nov 2019 08:28:01 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3828", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "4000", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:57 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:27:54 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1108,26 +813,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B52:1510D:49812C:5A2944:5D77B0A2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BE:2E3EE:233E033:29D56E7:5DD10491" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=300", + "url": "/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:12 GMT", + "Date": "Sun, 17 Nov 2019 08:28:02 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3827", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3999", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", + "ETag": "W/\"a638e9698167d5fc7192a629e3d235fc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1139,24 +843,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B56:15110:19206D6:1E898EF:5D77B0A3", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18BF:1C993:2D8310D:35FE705:5DD10491", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-second-title.json?ts=600&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:16 GMT", + "Date": "Sun, 17 Nov 2019 08:28:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3826", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3998", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1168,9 +871,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B5D:9D1D:1A7197:204B60:5D77B0A8", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18D9:23E1B:2EB1CFB:375618C:5DD10496", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1179,13 +881,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:17 GMT", + "Date": "Sun, 17 Nov 2019 08:28:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3825", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3997", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1197,9 +899,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B5E:244EB:18A2CDD:1DEFFA9:5D77B0A8", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DA:8070:22F59EC:298525A:5DD10496", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1209,17 +910,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:17 GMT", + "Date": "Sun, 17 Nov 2019 08:28:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3824", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3996", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"663451839f31aa79c14209dd5b7223aa\"", + "ETag": "\"668c219232112b2a9f262b5099c78124\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab", @@ -1232,26 +933,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B60:1510E:B13366:D803F2:5D77B0A9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18DF:23E1A:21F0212:284B85E:5DD10497" }, "response": "{\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=600", + "url": "/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:18 GMT", + "Date": "Sun, 17 Nov 2019 08:28:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3823", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3995", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", + "ETag": "W/\"a638e9698167d5fc7192a629e3d235fc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1263,27 +963,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B64:244E7:121A4F3:1619853:5D77B0AA", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E0:8072:2E403A1:36EBDB4:5DD10497", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/branches/master?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:18 GMT", + "Date": "Sun, 17 Nov 2019 08:28:08 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3822", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3994", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1295,199 +994,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B62:3ED7B:12DC52F:16EB7A8:5D77B0AA", - "content-length": "5961", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E1:1C98C:23ABD92:2A363CF:5DD10497", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3821", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B67:3ED7B:12DC669:16EB92E:5D77B0AB", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3820", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B68:3ED6F:1DFCE:2773F:5D77B0AB", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3819", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6A:1510C:18CF6C:1E6559:5D77B0AC", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:21 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2363", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3818", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"562d219591de1f540141173d1c9dc421\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6C:3ED7B:12DC942:16EBCAF:5D77B0AD", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-second-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"e58a266291a019859cf05afac9d176f7f55fb83d\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3817", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"585c88fd044b292e9c6bcc1987cfc5ab\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6E:2B19:AE5EE4:D44B5C:5D77B0AE", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:23 GMT", + "Date": "Sun, 17 Nov 2019 08:28:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3816", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3993", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"72e0f55636b82e7a4fb36ce7a78b3bce\"", + "ETag": "\"1a536ab1f0143ba66a700a30522525b0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622", + "Location": "https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1497,31 +1028,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B70:244EB:18A36CD:1DF0BE7:5D77B0AE", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18E6:34218:2F6722B:3829B99:5DD10498" }, - "response": "{\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"f05508ef4df2f4355ee404e0381fd8671970aeba\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:24 GMT", + "Date": "Sun, 17 Nov 2019 08:28:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1505", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3815", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3992", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"db67a0903e9178a3bf56ea70c24cc857\"", + "ETag": "\"06583cdc1c0227be6dd4dbff4b03b978\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1531,60 +1061,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B72:3ED7B:12DCC1D:16EC031:5D77B0AF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18EB:470CB:2D282BB:3576328:5DD10498" }, - "response": "{\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmY5YmY1ZmJmYzI1NjVlNWM0ZDRiOTJkYTZiNjVkYzdjNDkzNTUzMzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"html_url\": \"https://github.com/owner/repo/commit/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:23Z\"\n },\n \"tree\": {\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjEyOTk4NzVlZWE0ODk0ZmYzZTA1NTQ3MzczNTZmYzQ0YTJmZDdjYjk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"html_url\": \"https://github.com/owner/repo/commit/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:09Z\"\n },\n \"tree\": {\n \"sha\": \"f05508ef4df2f4355ee404e0381fd8671970aeba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f05508ef4df2f4355ee404e0381fd8671970aeba\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3814", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B74:3ED82:1915B8D:1E88AE9:5D77B0AF", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-second-title\",\"sha\":\"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-second-title\",\"sha\":\"1299875eea4894ff3e0554737356fc44a2fd7cb9\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:25 GMT", + "Date": "Sun, 17 Nov 2019 08:28:10 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "524", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3813", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3991", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ee25ca67fb2856402e351170af1d0a1c\"", + "ETag": "\"6cb8d0cd2635e88c75ff4628150765b3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title", @@ -1597,10 +1094,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B77:15110:1921E61:1E8B539:5D77B0B0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18ED:23E1B:2EB22FD:3756870:5DD10499" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n}\n", "status": 201 }, { @@ -1608,20 +1104,20 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:26 GMT", + "Date": "Sun, 17 Nov 2019 08:28:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21718", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3812", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3990", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1ac045f8e2fe1ec234422a5149e2fd2c\"", + "ETag": "\"1e2f6907ae1547f2c4b6c602a8107e96\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/pulls/2", + "Location": "https://api.github.com/repos/owner/repo/pulls/6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1631,27 +1127,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B78:9D21:17D1960:1D07CE3:5D77B0B1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F2:23E1B:2EB24AF:3756A6A:5DD1049A" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831990,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTkw\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:11Z\",\n \"updated_at\": \"2019-11-17T08:28:11Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:10Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:27 GMT", + "Date": "Sun, 17 Nov 2019 08:28:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3811", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3989", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cae09ac0f1593384e689fe006940565a\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"22607a2fc03f06c84be6aca24ac03c4b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1664,32 +1159,62 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7B:3ED7B:12DD06D:16EC569:5D77B0B2", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:8070:22F5F90:2985920:5DD1049C", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bba273eed7507bad46a72de64cffc2a9f5998a61\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJmOWJmNWZiZmMyNTY1ZTVjNGQ0YjkyZGE2YjY1ZGM3YzQ5MzU1MzMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", + "method": "GET", + "url": "/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3988", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a638e9698167d5fc7192a629e3d235fc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18FC:34217:2364184:2A0DFFA:5DD1049C", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOiIxMjk5ODc1ZWVhNDg5NGZmM2UwNTU0NzM3MzU2ZmM0NGEyZmQ3Y2I5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:27 GMT", + "Date": "Sun, 17 Nov 2019 08:28:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3810", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3987", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"926b47347c2ac3a77a24bdaa2398e6b7\"", + "ETag": "\"afe01ecd60ae63f5759e9572bb861c61\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/84c7a7cd38f1a3080ade4a64970cf984e3094d84", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1699,64 +1224,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7C:9D1F:A793B2:CC9074:5D77B0B3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1901:34216:134062D:16D2E19:5DD1049C" }, - "response": "{\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n}\n", + "response": "{\n \"sha\": \"84c7a7cd38f1a3080ade4a64970cf984e3094d84\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/84c7a7cd38f1a3080ade4a64970cf984e3094d84\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/38e81b86ccf019d7a0d1111be47af62622235edb?ts=600", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:28 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3809", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f872f2a76ef7fcd69b61275f2061b67d\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7F:1510E:B13B80:D80DE7:5D77B0B3", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"38e81b86ccf019d7a0d1111be47af62622235edb\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"cb41e9645a6b2283378b575576507f6ba90382d5\"}]}", + "body": "{\"base_tree\":\"bba273eed7507bad46a72de64cffc2a9f5998a61\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"84c7a7cd38f1a3080ade4a64970cf984e3094d84\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:29 GMT", + "Date": "Sun, 17 Nov 2019 08:28:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1230", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3808", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3986", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"01e9174715f5d34522b2f8776bc57ab9\"", + "ETag": "\"4a1ea7d6e89da8563f9b10749c4c702c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9ff81e33b86612b8470e80be0043bbab9d14b527", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1766,31 +1257,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B80:B4DE:1269C13:166C674:5D77B0B4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1903:34217:2364281:2A0E122:5DD1049D" }, - "response": "{\n \"sha\": \"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"9ff81e33b86612b8470e80be0043bbab9d14b527\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9ff81e33b86612b8470e80be0043bbab9d14b527\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"84c7a7cd38f1a3080ade4a64970cf984e3094d84\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/84c7a7cd38f1a3080ade4a64970cf984e3094d84\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\"parents\":[\"38e81b86ccf019d7a0d1111be47af62622235edb\"]}", + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"9ff81e33b86612b8470e80be0043bbab9d14b527\",\"parents\":[\"bba273eed7507bad46a72de64cffc2a9f5998a61\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:30 GMT", + "Date": "Sun, 17 Nov 2019 08:28:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1511", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3807", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3985", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9b548212a8753cd801379c40e7de0d8b\"", + "ETag": "\"248f97cb43b0168a3169ac36fad9d00a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4559ed33b226520844c2d2f388789eb8ad11b176", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1800,27 +1290,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B82:B4DA:556ACF:6838EC:5D77B0B5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1907:8072:2E40EBE:36ECAA2:5DD1049E" }, - "response": "{\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmMzMDhmMjM1ZTE4ZGVkOGFkMWZmM2NlZjdkZTNmMzZkMWQzZjZmOTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"html_url\": \"https://github.com/owner/repo/commit/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:29Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:29Z\"\n },\n \"tree\": {\n \"sha\": \"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"html_url\": \"https://github.com/owner/repo/commit/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjQ1NTllZDMzYjIyNjUyMDg0NGMyZDJmMzg4Nzg5ZWI4YWQxMWIxNzY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"html_url\": \"https://github.com/owner/repo/commit/4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:14Z\"\n },\n \"tree\": {\n \"sha\": \"9ff81e33b86612b8470e80be0043bbab9d14b527\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9ff81e33b86612b8470e80be0043bbab9d14b527\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bba273eed7507bad46a72de64cffc2a9f5998a61\",\n \"html_url\": \"https://github.com/owner/repo/commit/bba273eed7507bad46a72de64cffc2a9f5998a61\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\"force\":false}", + "body": "{\"sha\":\"4559ed33b226520844c2d2f388789eb8ad11b176\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:31 GMT", + "Date": "Sun, 17 Nov 2019 08:28:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3806", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3984", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"02e197ec1cfc4fa9e12af53e017816ba\"", + "ETag": "W/\"8dc026f52d22becd4c8eeefc1c675250\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1832,24 +1321,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B84:15110:19228FC:1E8C212:5D77B0B6", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190C:34218:2F67B33:382A667:5DD1049F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4559ed33b226520844c2d2f388789eb8ad11b176\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:32 GMT", + "Date": "Sun, 17 Nov 2019 08:28:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3805", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3983", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1861,9 +1349,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B86:244EB:18A45FD:1DF1E31:5D77B0B7", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470C9:22BFCEA:294908D:5DD104A0", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1872,18 +1359,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=cms/1970-01-01-second-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:32 GMT", + "Date": "Sun, 17 Nov 2019 08:28:16 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3804", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3982", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", - "Last-Modified": "Tue, 10 Sep 2019 14:18:23 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:09 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1895,26 +1382,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B88:3ED82:19168EA:1E89B2D:5D77B0B7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34217:2364519:2A0E440:5DD104A0" }, "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=600", + "url": "/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status?ts=600", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:33 GMT", + "Date": "Sun, 17 Nov 2019 08:28:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3803", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3981", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", + "ETag": "W/\"e713f55a09c2eb4189a10047975c21c8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1926,24 +1412,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8B:2B24:186B679:1DB125E:5D77B0B9", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C993:2D8486A:360024E:5DD104A0", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-third-title.json?ts=900&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:39 GMT", + "Date": "Sun, 17 Nov 2019 08:28:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3802", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3980", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1955,56 +1440,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8E:2B24:186BF3B:1DB1D05:5D77B0BE", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470C7:14E6DF7:18A582E:5DD104A5", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3801", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B90:3ED7B:12DDE60:16ED6CC:5D77B0BE", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:39 GMT", + "Date": "Sun, 17 Nov 2019 08:28:22 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3800", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3979", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2016,9 +1468,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B92:2B0F:1AF655:210AA6:5D77B0BF", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193A:470C9:22C02C1:294976C:5DD104A5", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -2028,17 +1479,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:40 GMT", + "Date": "Sun, 17 Nov 2019 08:28:22 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3799", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3978", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2ff43601202705719ab1f4b1403f459f\"", + "ETag": "\"3e56f600cdf9a37eac431a4281b0817f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2", @@ -2051,191 +1502,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B94:244EB:18A53B2:1DF2EDE:5D77B0C0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193D:2E3F0:3011594:38DDDF5:5DD104A6" }, "response": "{\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/branches/master?ts=900", + "url": "/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:41 GMT", + "Date": "Sun, 17 Nov 2019 08:28:23 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3798", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3977", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B96:15110:1923A54:1E8D743:5D77B0C0", - "content-length": "5961", - "connection": "keep-alive" - }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3797", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B98:15110:1923B3E:1E8D873:5D77B0C1", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:42 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3796", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9A:B4E0:175274D:1C64D61:5D77B0C2", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:43 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3795", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9D:9D20:11C494D:15BCBD1:5D77B0C2", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3794", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bda2c8101bd7c0339cc50a1c0ac9448b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9F:2B24:186C7EA:1DB27B4:5D77B0C3", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-third-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:44 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3793", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", + "ETag": "W/\"e713f55a09c2eb4189a10047975c21c8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2247,32 +1532,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA2:1510F:12A9CDA:16A9A3A:5D77B0C4", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193F:2E3ED:13A4F8A:17721D2:5DD104A6", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status\"\n}\n", "status": 200 }, { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=900", + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:45 GMT", + "Date": "Sun, 17 Nov 2019 08:28:23 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", "Server": "GitHub.com", - "Status": "201 Created", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3792", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3976", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"34da3edcbaf408d1b8d2120ced702ad8\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2282,31 +1563,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA0:244E4:B3DA44:DA0FA6:5D77B0C4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1943:1C985:135FBD5:170812F:5DD104A6", + "content-length": "5379" }, - "response": "{\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 }, { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"171202850395a6ac687cc4cc318bd28037cbc4da\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:45 GMT", + "Date": "Sun, 17 Nov 2019 08:28:24 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3791", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3975", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"50026496ba841e52a19dab14dfe5e12f\"", + "ETag": "\"1ee79c22c6fe73ffb1d9ef2827da0424\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6", + "Location": "https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2316,31 +1597,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA4:9D20:11C4C1B:15BCF4D:5D77B0C5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1945:806E:139C287:1752D16:5DD104A7" }, - "response": "{\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"e619cfb3515277852b8b0574a0984d17c99ce33f\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:46 GMT", + "Date": "Sun, 17 Nov 2019 08:28:24 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3790", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3974", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"818544fc04e2a384c01bb345e2cf0f5e\"", + "ETag": "\"ec6b8647f17d5604494f289b1c226813\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b", + "Location": "https://api.github.com/repos/owner/repo/git/commits/a89bab467322e89708d58343b12cb408603eafcd", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2350,28 +1630,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA6:B4E0:1752D74:1C654D2:5D77B0C5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1949:23E1B:2EB3993:37582BC:5DD104A8" }, - "response": "{\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmM3NzczZjUxNmY1YWQxY2U1OGVlOTE0MzY1OTIyNjQ2ZWQ1ODY3OGI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:46Z\"\n },\n \"tree\": {\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmE4OWJhYjQ2NzMyMmU4OTcwOGQ1ODM0M2IxMmNiNDA4NjAzZWFmY2Q=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a89bab467322e89708d58343b12cb408603eafcd\",\n \"html_url\": \"https://github.com/owner/repo/commit/a89bab467322e89708d58343b12cb408603eafcd\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:24Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:24Z\"\n },\n \"tree\": {\n \"sha\": \"e619cfb3515277852b8b0574a0984d17c99ce33f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e619cfb3515277852b8b0574a0984d17c99ce33f\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-third-title\",\"sha\":\"c7773f516f5ad1ce58ee914365922646ed58678b\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-third-title\",\"sha\":\"a89bab467322e89708d58343b12cb408603eafcd\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:47 GMT", + "Date": "Sun, 17 Nov 2019 08:28:25 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3789", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3973", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d91c01d0d00540fa955373ba30d895e6\"", + "ETag": "\"e6ce1ca774772ec4c9e4d56b8623d582\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title", @@ -2384,10 +1663,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA9:15110:192449A:1E8E404:5D77B0C6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194A:1C993:2D85274:3600E2C:5DD104A8" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n}\n", "status": 201 }, { @@ -2395,20 +1673,20 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:49 GMT", + "Date": "Sun, 17 Nov 2019 08:28:27 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3788", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3972", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ea65df44de649737aff5e186936d2eba\"", + "ETag": "\"c05a3bf30a6e0304d197cc6c805c478c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/pulls/3", + "Location": "https://api.github.com/repos/owner/repo/pulls/7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2418,27 +1696,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAA:2B1F:129EC68:16BC17E:5D77B0C8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1953:2E3ED:13A5189:177242C:5DD104A9" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:47Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:47Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831996,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTk2\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:26Z\",\n \"updated_at\": \"2019-11-17T08:28:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:50 GMT", + "Date": "Sun, 17 Nov 2019 08:28:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3787", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3971", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"02e197ec1cfc4fa9e12af53e017816ba\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"8dc026f52d22becd4c8eeefc1c675250\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2451,32 +1728,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAC:2B1F:129EE65:16BC3EE:5D77B0C9", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1958:8072:2E4219B:36EE0B8:5DD104AB", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4559ed33b226520844c2d2f388789eb8ad11b176\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjNzc3M2Y1MTZmNWFkMWNlNThlZTkxNDM2NTkyMjY0NmVkNTg2NzhiIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOiJhODliYWI0NjczMjJlODk3MDhkNTgzNDNiMTJjYjQwODYwM2VhZmNkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:50 GMT", + "Date": "Sun, 17 Nov 2019 08:28:28 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3786", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3970", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2550b26b2200d132993b21c5c39a8f78\"", + "ETag": "\"658b32dfd720cc01c01b24289efeaa5f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -2486,222 +1762,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAF:1510C:18D472:1E6B66:5D77B0CA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195D:470C5:888ABB:A23542:5DD104AC" }, - "response": "{\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n}\n", + "response": "{\n \"sha\": \"0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/git/trees/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97?ts=900", + "url": "/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:51 GMT", + "Date": "Sun, 17 Nov 2019 08:28:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3785", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3969", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3488f14de21bf04b205f01499d5045fd\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB0:15110:1924BE5:1E8ED02:5D77B0CB", - "content-length": "1230", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d3f15a84d5a717b44b5ce34d3185586b4d05f727\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1564", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3784", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d5f54212c81532a078937f03b21abc20\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB2:3ED77:B08DFC:D61DF5:5D77B0CB", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\"parents\":[\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:52 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3783", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"0b13c9d776d02b22e21b9f9dbe2d36e7\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB5:9D1F:A7A505:CCA5FE:5D77B0CC", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjMzOWI0N2E4ZWQyMDEzNzdlYzlmOWQ5NjgyMjQwNzZjMjVmOGY3ZjQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"html_url\": \"https://github.com/owner/repo/commit/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:52Z\"\n },\n \"tree\": {\n \"sha\": \"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"html_url\": \"https://github.com/owner/repo/commit/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"sha\":\"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3782", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f016911b2e6e2b9417edf7e38766eba\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB7:2B1F:129F2C5:16BC954:5D77B0CD", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=cms/1970-01-01-third-title", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:54 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3780", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", - "Last-Modified": "Tue, 10 Sep 2019 14:18:46 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBA:B4DE:126BBB4:166ED41:5D77B0CE", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:54 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3781", - "X-RateLimit-Reset": "1568128657", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB9:2B24:186DAC0:1DB3E62:5D77B0CE", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:55 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3779", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", + "ETag": "W/\"e713f55a09c2eb4189a10047975c21c8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2713,28 +1792,216 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBC:2B24:186DC69:1DB4052:5D77B0CF", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1960:8070:22F6C0F:2986873:5DD104AC", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"4559ed33b226520844c2d2f388789eb8ad11b176\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3968", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"073fa66adadd0010fac7ce691424854e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/609e96fb16a3f01e27653c40eeda15eec2e31664", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1961:23E1B:2EB404D:3758A79:5DD104AC" + }, + "response": "{\n \"sha\": \"609e96fb16a3f01e27653c40eeda15eec2e31664\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/609e96fb16a3f01e27653c40eeda15eec2e31664\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"84c7a7cd38f1a3080ade4a64970cf984e3094d84\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/84c7a7cd38f1a3080ade4a64970cf984e3094d84\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0b0f1d10eb2ae7c3140aa99e6c2e79c4c92ece11\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"609e96fb16a3f01e27653c40eeda15eec2e31664\",\"parents\":[\"4559ed33b226520844c2d2f388789eb8ad11b176\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3967", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c5bb312e4f9fdac7635520b18c337f49\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/889b76b32eddf83a65540d76264879bb0d17f8ff", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1968:8072:2E4240E:36EE38E:5DD104AD" + }, + "response": "{\n \"sha\": \"889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3Ojg4OWI3NmIzMmVkZGY4M2E2NTU0MGQ3NjI2NDg3OWJiMGQxN2Y4ZmY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"html_url\": \"https://github.com/owner/repo/commit/889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:29Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:29Z\"\n },\n \"tree\": {\n \"sha\": \"609e96fb16a3f01e27653c40eeda15eec2e31664\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/609e96fb16a3f01e27653c40eeda15eec2e31664\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4559ed33b226520844c2d2f388789eb8ad11b176\",\n \"html_url\": \"https://github.com/owner/repo/commit/4559ed33b226520844c2d2f388789eb8ad11b176\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"889b76b32eddf83a65540d76264879bb0d17f8ff\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3966", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0ccb66c4a58e3ffc6129c07fe09c0150\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "196D:8070:22F6D73:2986A1A:5DD104AE", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/889b76b32eddf83a65540d76264879bb0d17f8ff\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3965", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1972:8072:2E426B2:36EE6B4:5DD104AF", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=cms/1970-01-01-third-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:31 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3964", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:28:24 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1973:8072:2E426BE:36EE6BE:5DD104AF" + }, + "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3963", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"843dd4fa7c8abc0bc6c86a9b078dc7fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1978:1C98C:23AD984:2A3847E:5DD104B0", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:56 GMT", + "Date": "Sun, 17 Nov 2019 08:28:32 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3778", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3962", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"41240c375f52df4cd404eec77d7253e3\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"926e6168985092b1b2f74bcda033fc3f\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2747,27 +2014,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBE:1510F:12AAA52:16AAAE3:5D77B0CF", - "content-length": "1626", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1979:470CB:2D2A04A:357861D:5DD104B0", + "content-length": "1626" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-third-title&state=open&base=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3777", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3959", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", + "ETag": "W/\"71c47acc31d3d3f55a6068e263871794\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2779,59 +2045,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC6:3ED76:4AE30D:5BD16F:5D77B0D0", - "content-length": "66459", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1980:2E3ED:13A551F:1772874:5DD104B0", + "content-length": "66459" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-first-title&state=open&base=master", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3776", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC0:15110:1925596:1E8F8CE:5D77B0D0", - "content-length": "66459", - "connection": "keep-alive" - }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831996,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTk2\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:26Z\",\n \"updated_at\": \"2019-11-17T08:28:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6baa567c577e19192fdd7a5b368356484dceb153\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831990,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTkw\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:11Z\",\n \"updated_at\": \"2019-11-17T08:28:11Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"c1522bcab067e345578290ae51ae1636762ed681\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 341831960,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTYw\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:27:56Z\",\n \"updated_at\": \"2019-11-17T08:27:56Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"1848fa9f0d35c8b657fc10deb17c8258603695db\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-second-title&state=open&base=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3775", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3960", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", + "ETag": "W/\"71c47acc31d3d3f55a6068e263871794\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2843,32 +2076,29 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC3:B4DE:126BE42:166F06F:5D77B0D0", - "content-length": "66459", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197F:34216:1341235:16D3C09:5DD104B0", + "content-length": "66459" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831996,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTk2\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:26Z\",\n \"updated_at\": \"2019-11-17T08:28:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6baa567c577e19192fdd7a5b368356484dceb153\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831990,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTkw\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:11Z\",\n \"updated_at\": \"2019-11-17T08:28:11Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"c1522bcab067e345578290ae51ae1636762ed681\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 341831960,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTYw\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:27:56Z\",\n \"updated_at\": \"2019-11-17T08:27:56Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"1848fa9f0d35c8b657fc10deb17c8258603695db\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=cms/1970-01-01-first-title", + "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:57 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3774", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3961", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:57 GMT", + "ETag": "W/\"71c47acc31d3d3f55a6068e263871794\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2877,57 +2107,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCB:3ED7B:12DF356:16EF14F:5D77B0D1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197E:23E1A:21F1BAC:284D6AD:5DD104B0", + "content-length": "66459" }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/7\",\n \"id\": 341831996,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTk2\",\n \"html_url\": \"https://github.com/owner/repo/pull/7\",\n \"diff_url\": \"https://github.com/owner/repo/pull/7.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/7.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/7\",\n \"number\": 7,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:26Z\",\n \"updated_at\": \"2019-11-17T08:28:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6baa567c577e19192fdd7a5b368356484dceb153\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/7/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/7\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/7/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/7/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/a89bab467322e89708d58343b12cb408603eafcd\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 341831990,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTkw\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:28:11Z\",\n \"updated_at\": \"2019-11-17T08:28:11Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"c1522bcab067e345578290ae51ae1636762ed681\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1299875eea4894ff3e0554737356fc44a2fd7cb9\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 341831960,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxOTYw\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:27:56Z\",\n \"updated_at\": \"2019-11-17T08:27:56Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"1848fa9f0d35c8b657fc10deb17c8258603695db\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:28:31Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=master", - "headers": { - "Date": "Tue, 10 Sep 2019 14:18:57 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3773", - "X-RateLimit-Reset": "1568128657", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BC8:2B24:186DFD8:1DB4474:5D77B0D1", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=cms/1970-01-01-third-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:58 GMT", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3772", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3958", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", - "Last-Modified": "Tue, 10 Sep 2019 14:18:46 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:24 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2939,23 +2140,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCC:9D20:11C5A71:15BE13E:5D77B0D1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1981:470CB:2D2A16D:3578774:5DD104B1" }, "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:58 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3771", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3955", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:27:54 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2967,24 +2172,50 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BCF:9D21:17D4C7A:1D0BB57:5D77B0D1", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1986:2E3ED:13A5568:17728C9:5DD104B1" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3957", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1982:23E1A:21F1C26:284D73D:5DD104B1", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=master", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:58 GMT", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3770", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3956", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2996,9 +2227,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE2:244EB:18A70D5:1DF52BA:5D77B0D2", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1983:1C993:2D85C20:3601A01:5DD104B1", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -3007,18 +2237,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=cms/1970-01-01-second-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:18:59 GMT", + "Date": "Sun, 17 Nov 2019 08:28:33 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3769", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3954", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", - "Last-Modified": "Tue, 10 Sep 2019 14:18:23 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:09 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -3030,27 +2260,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE4:3ED77:B09350:D62493:5D77B0D2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1987:806C:893269:A320C6:5DD104B1" }, "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3953", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "198A:470CB:2D2A1A3:35787BA:5DD104B1", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:00 GMT", + "Date": "Sun, 17 Nov 2019 08:28:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3768", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3952", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9f016911b2e6e2b9417edf7e38766eba\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"0ccb66c4a58e3ffc6129c07fe09c0150\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -3063,32 +2320,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE6:2B1F:129FAF5:16BD39A:5D77B0D4", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198F:2E3ED:13A55E0:177295A:5DD104B2", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/889b76b32eddf83a65540d76264879bb0d17f8ff\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjNzc3M2Y1MTZmNWFkMWNlNThlZTkxNDM2NTkyMjY0NmVkNTg2NzhiIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjcsImhlYWQiOiJhODliYWI0NjczMjJlODk3MDhkNTgzNDNiMTJjYjQwODYwM2VhZmNkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:01 GMT", + "Date": "Sun, 17 Nov 2019 08:28:35 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3767", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3951", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fcce4148f362da2affd956b376755f93\"", + "ETag": "\"5c6ff3e077f6717837749b0086b7391f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3098,96 +2354,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BE8:1510E:B15382:D82BE6:5D77B0D4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1995:8072:2E42B24:36EEC04:5DD104B3" }, - "response": "{\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n}\n", + "response": "{\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:19:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3766", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEB:B4DA:55790F:684A8B:5D77B0D5", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/339b47a8ed201377ec9f9d968224076c25f8f7f4?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:19:01 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3765", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4492498ec6059f504dc9d8a2b0e30da4\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEC:9D21:17D52A3:1D0C329:5D77B0D5", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"}]}", + "body": "{\"base_tree\":\"889b76b32eddf83a65540d76264879bb0d17f8ff\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"04a74ef135ee2633a194c55e4faa74d97cb593b5\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:02 GMT", + "Date": "Sun, 17 Nov 2019 08:28:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3764", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3950", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"75b5d6191315c0f4fe00a3fd55bc6a22\"", + "ETag": "\"81951fcd9c587e75c82b16ff158f50b5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f", + "Location": "https://api.github.com/repos/owner/repo/git/trees/b71df1a0a8ba5c15c6da0620ed636bdebf32ce68", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3197,31 +2387,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BEE:15110:1925EC9:1E9040F:5D77B0D5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1996:8072:2E42BED:36EECF9:5DD104B3" }, - "response": "{\n \"sha\": \"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"b71df1a0a8ba5c15c6da0620ed636bdebf32ce68\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b71df1a0a8ba5c15c6da0620ed636bdebf32ce68\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"84c7a7cd38f1a3080ade4a64970cf984e3094d84\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/84c7a7cd38f1a3080ade4a64970cf984e3094d84\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\"parents\":[\"339b47a8ed201377ec9f9d968224076c25f8f7f4\"]}", + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"b71df1a0a8ba5c15c6da0620ed636bdebf32ce68\",\"parents\":[\"889b76b32eddf83a65540d76264879bb0d17f8ff\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:03 GMT", + "Date": "Sun, 17 Nov 2019 08:28:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3763", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3949", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7740ec1527ff6fef3aea7b70c6ded3d7\"", + "ETag": "\"1094a9dd8b0e721e9adc49541cec1d21\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1e65786ef4fdcd439a6b282fd2d93b35248559c0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3231,27 +2420,57 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF0:2B15:50BBD2:620C09:5D77B0D6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "199D:470CB:2D2A47E:3578B37:5DD104B4" }, - "response": "{\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmU4MDlhNTZlOTVjNWNhNDE1Y2Y3YjdmMjczN2Y2YzNkNDkwNjFkN2Y=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:02Z\"\n },\n \"tree\": {\n \"sha\": \"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"html_url\": \"https://github.com/owner/repo/commit/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFlNjU3ODZlZjRmZGNkNDM5YTZiMjgyZmQyZDkzYjM1MjQ4NTU5YzA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"html_url\": \"https://github.com/owner/repo/commit/1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:36Z\"\n },\n \"tree\": {\n \"sha\": \"b71df1a0a8ba5c15c6da0620ed636bdebf32ce68\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b71df1a0a8ba5c15c6da0620ed636bdebf32ce68\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/889b76b32eddf83a65540d76264879bb0d17f8ff\",\n \"html_url\": \"https://github.com/owner/repo/commit/889b76b32eddf83a65540d76264879bb0d17f8ff\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "method": "GET", + "url": "/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:04 GMT", + "Date": "Sun, 17 Nov 2019 08:28:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3762", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3948", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7cd74dfdfeba403374fa46f5ba8b0a71\"", + "ETag": "W/\"843dd4fa7c8abc0bc6c86a9b078dc7fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19A7:1C985:13603B8:1708A7E:5DD104B5", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3947", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ce5eb283c1acde9409f84dcba8bb3e96\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3263,28 +2482,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF2:1510F:12AB399:16AB691:5D77B0D7", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A5:1C985:1360378:1708A2D:5DD104B5", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1e65786ef4fdcd439a6b282fd2d93b35248559c0\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:07 GMT", + "Date": "Sun, 17 Nov 2019 08:28:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3761", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3946", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7cd74dfdfeba403374fa46f5ba8b0a71\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"ce5eb283c1acde9409f84dcba8bb3e96\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -3297,64 +2515,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF4:B4DC:B08C22:D6E0D3:5D77B0DA", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B0:806E:139CB97:17537D1:5DD104B7", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1e65786ef4fdcd439a6b282fd2d93b35248559c0\"\n }\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:19:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3760", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF6:1510D:499CDA:5A4AB6:5D77B0DA", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJmOWJmNWZiZmMyNTY1ZTVjNGQ0YjkyZGE2YjY1ZGM3YzQ5MzU1MzMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOiIxMjk5ODc1ZWVhNDg5NGZmM2UwNTU0NzM3MzU2ZmM0NGEyZmQ3Y2I5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:07 GMT", + "Date": "Sun, 17 Nov 2019 08:28:40 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3759", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3945", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5203ff201fd4a85500fb7b8abc890c05\"", + "ETag": "\"bed7f6793d2b8d26e8a8207a778f497d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3364,64 +2549,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BF9:2B19:AE8543:D47A18:5D77B0DB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1B:2EB4F07:3759BF2:5DD104B7" }, - "response": "{\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n}\n", + "response": "{\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:19:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3758", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4ec2b390492d7b713bc8e960844648f4\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFC:B4E0:175509D:1C6803D:5D77B0DC", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4182cbba29b25275b115e2f15e9eee4c920bb470\"}]}", + "body": "{\"base_tree\":\"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:09 GMT", + "Date": "Sun, 17 Nov 2019 08:28:40 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3757", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3944", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4608edd6f0b0ee7f88e2b3e70918a987\"", + "ETag": "\"b18249837e2adef7cdc3c75de0a1a081\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97", + "Location": "https://api.github.com/repos/owner/repo/git/trees/49f7f57a4a286e5db28898a35ace9b225b639038", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3431,31 +2582,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BFF:15110:1926B8B:1E91390:5D77B0DC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B3:470C9:22C16BA:294AEF0:5DD104B8" }, - "response": "{\n \"sha\": \"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"49f7f57a4a286e5db28898a35ace9b225b639038\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/49f7f57a4a286e5db28898a35ace9b225b639038\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e2420ec3a38609ae26d144015f2026da091b4d73\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e2420ec3a38609ae26d144015f2026da091b4d73\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\"parents\":[\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"]}", + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"49f7f57a4a286e5db28898a35ace9b225b639038\",\"parents\":[\"1e65786ef4fdcd439a6b282fd2d93b35248559c0\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:10 GMT", + "Date": "Sun, 17 Nov 2019 08:28:41 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1511", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3756", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3943", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a4bb46d644498253226c6adf160f7374\"", + "ETag": "\"4d53821a48e5f614822a9eea80b9dee3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80", + "Location": "https://api.github.com/repos/owner/repo/git/commits/13b9f79f0941ba8af92ffa932ff533669705a020", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3465,27 +2615,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A00:B4D7:1B61D7:218111:5D77B0DD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B7:470CB:2D2A98D:3579129:5DD104B9" }, - "response": "{\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmM3YWNhNGQ5ZmY2YzdlYzA0NDI4NzFmZDAxYTVjZDExMDQ5ZjFiODA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:09Z\"\n },\n \"tree\": {\n \"sha\": \"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjEzYjlmNzlmMDk0MWJhOGFmOTJmZmE5MzJmZjUzMzY2OTcwNWEwMjA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"html_url\": \"https://github.com/owner/repo/commit/13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:41Z\"\n },\n \"tree\": {\n \"sha\": \"49f7f57a4a286e5db28898a35ace9b225b639038\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/49f7f57a4a286e5db28898a35ace9b225b639038\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1e65786ef4fdcd439a6b282fd2d93b35248559c0\",\n \"html_url\": \"https://github.com/owner/repo/commit/1e65786ef4fdcd439a6b282fd2d93b35248559c0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\"force\":false}", + "body": "{\"sha\":\"13b9f79f0941ba8af92ffa932ff533669705a020\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:11 GMT", + "Date": "Sun, 17 Nov 2019 08:28:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3755", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3942", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bcd2b7299aec9d028b6ed8afce50f183\"", + "ETag": "W/\"b0f2e81105616732742a3b898baacfca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3497,28 +2646,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A02:244EB:18A84CA:1DF6B80:5D77B0DE", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B9:8070:22F7630:29874FD:5DD104B9", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/13b9f79f0941ba8af92ffa932ff533669705a020\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:12 GMT", + "Date": "Sun, 17 Nov 2019 08:28:43 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3754", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3941", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bcd2b7299aec9d028b6ed8afce50f183\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "ETag": "W/\"b0f2e81105616732742a3b898baacfca\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -3531,32 +2679,62 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A04:3ED82:191ACED:1E8EF02:5D77B0DF", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C3:2E3EC:7B8B2C:94123A:5DD104BB", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/13b9f79f0941ba8af92ffa932ff533669705a020\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJlYmM0NTZmMDMyNDczNTkzNDRhNzIyZDI2NDRiODAxOTYwYmM5ZTkxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "GET", + "url": "/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status?ts=900", + "headers": { + "Date": "Sun, 17 Nov 2019 08:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3940", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"843dd4fa7c8abc0bc6c86a9b078dc7fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C4:470C5:888F24:A23A50:5DD104BB", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"a89bab467322e89708d58343b12cb408603eafcd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/a89bab467322e89708d58343b12cb408603eafcd/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOiI1OWU3YzQ2ZWJkZDNjOGVkOWIwYTRiN2FkZGU0N2IwMGYzN2FlMmM1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:13 GMT", + "Date": "Sun, 17 Nov 2019 08:28:44 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3753", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3939", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cebf1d0789e90fcaba50722bbc1ecc19\"", + "ETag": "\"c6ff80bef12e20315f5c64458eed1c4d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b118dc189e8fa5d8151b0e7e095b9f095d78b72c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3566,64 +2744,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A06:9D1E:4E19C5:5F9938:5D77B0E0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C6:23E1A:21F24D1:284E1C5:5DD104BB" }, - "response": "{\n \"sha\": \"7f27fad63b93f9a895786a4c8170201b87898994\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994\"\n}\n", + "response": "{\n \"sha\": \"b118dc189e8fa5d8151b0e7e095b9f095d78b72c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b118dc189e8fa5d8151b0e7e095b9f095d78b72c\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80?ts=900", - "headers": { - "Date": "Tue, 10 Sep 2019 14:19:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3752", - "X-RateLimit-Reset": "1568128657", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"aaf3692173c467f6c871c56128c57b39\"", - "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A08:244EB:18A89B4:1DF7165:5D77B0E1", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7f27fad63b93f9a895786a4c8170201b87898994\"}]}", + "body": "{\"base_tree\":\"13b9f79f0941ba8af92ffa932ff533669705a020\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b118dc189e8fa5d8151b0e7e095b9f095d78b72c\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:14 GMT", + "Date": "Sun, 17 Nov 2019 08:28:45 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3751", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3938", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cc3615e538c8440ead59d84b7405b2d3\"", + "ETag": "\"e58e435dc1b5c2bc23bf6b7a4095e257\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9958b8f85718f484ad3b95df38b96b847baeb822", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3633,31 +2777,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0A:9D20:11C6EDE:15BFAA8:5D77B0E2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C8:2E3F0:30133C9:38E016A:5DD104BC" }, - "response": "{\n \"sha\": \"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7f27fad63b93f9a895786a4c8170201b87898994\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"9958b8f85718f484ad3b95df38b96b847baeb822\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9958b8f85718f484ad3b95df38b96b847baeb822\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b118dc189e8fa5d8151b0e7e095b9f095d78b72c\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b118dc189e8fa5d8151b0e7e095b9f095d78b72c\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\"parents\":[\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"9958b8f85718f484ad3b95df38b96b847baeb822\",\"parents\":[\"13b9f79f0941ba8af92ffa932ff533669705a020\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:15 GMT", + "Date": "Sun, 17 Nov 2019 08:28:46 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3750", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3937", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"12009df5055cb36d4d79e0b1944c5bfe\"", + "ETag": "\"52ecb18cbeae409dd5622aa6720c3b47\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07", + "Location": "https://api.github.com/repos/owner/repo/git/commits/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -3667,27 +2810,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A0E:15110:1927747:1E921C8:5D77B0E3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CF:23E1B:2EB56F5:375A532:5DD104BD" }, - "response": "{\n \"sha\": \"918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjkxOGEwNGY5NWYwOTJjY2UzMzk1ZjI3YWEyMmNiYTJmNTA2NTNmMDc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"html_url\": \"https://github.com/owner/repo/commit/918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:15Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:15Z\"\n },\n \"tree\": {\n \"sha\": \"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmE0Y2I5YWUzNzZiYzYzOWVlNGZlMTExYTQ3OGUwMWRkZjVhMzkzNGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"html_url\": \"https://github.com/owner/repo/commit/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:45Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:28:45Z\"\n },\n \"tree\": {\n \"sha\": \"9958b8f85718f484ad3b95df38b96b847baeb822\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9958b8f85718f484ad3b95df38b96b847baeb822\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/13b9f79f0941ba8af92ffa932ff533669705a020\",\n \"html_url\": \"https://github.com/owner/repo/commit/13b9f79f0941ba8af92ffa932ff533669705a020\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"918a04f95f092cce3395f27aa22cba2f50653f07\",\"force\":false}", + "body": "{\"sha\":\"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:16 GMT", + "Date": "Sun, 17 Nov 2019 08:28:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3749", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3936", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"50d538935f8bb0d4e7ff31ce3b5849a7\"", + "ETag": "W/\"7a885c88124dff13e6282585518de22a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3699,28 +2841,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A10:9D21:17D6AAE:1D0E0B9:5D77B0E3", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D2:2E3EE:23409BF:29D88F7:5DD104BE", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\"\n }\n}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"c7773f516f5ad1ce58ee914365922646ed58678b\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"a89bab467322e89708d58343b12cb408603eafcd\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/3/merge?ts=900", + "url": "/repos/owner/repo/pulls/7/merge?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:18 GMT", + "Date": "Sun, 17 Nov 2019 08:28:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3748", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3935", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4e863b4367960cda7f44accda25aa701\"", + "ETag": "W/\"87eb920cc87b6de25c1bcd6bfd8a13fd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3732,24 +2873,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A12:15110:1927B38:1E92691:5D77B0E5", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D9:2E3EC:7B8C33:941373:5DD104BF", + "content-length": "123" }, - "response": "{\n \"sha\": \"16126cf2971daab2eb030e41d0bef9cf00561f10\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"3d35550d2fc3d8e0b31c054b8c9bde2fea2b2619\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-third-title?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:19 GMT", - "Content-Type": "application/octet-stream", + "Date": "Sun, 17 Nov 2019 08:28:50 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3747", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3934", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3762,9 +2901,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A14:244E1:545619:65DAEC:5D77B0E6", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E2:806E:139D108:1753E4B:5DD104C1", + "content-length": "0" }, "response": null, "status": 204 @@ -3773,18 +2911,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:20 GMT", + "Date": "Sun, 17 Nov 2019 08:28:51 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3746", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3933", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", - "Last-Modified": "Tue, 10 Sep 2019 14:19:17 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:47 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -3796,27 +2934,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A16:15110:1928014:1E92C91:5D77B0E7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E7:470C9:22C2241:294BC87:5DD104C2" }, "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"1299875eea4894ff3e0554737356fc44a2fd7cb9\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/2/merge?ts=900", + "url": "/repos/owner/repo/pulls/6/merge?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:23 GMT", + "Date": "Sun, 17 Nov 2019 08:28:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3745", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3932", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7434c12f5b445781d15ff617b44873e5\"", + "ETag": "W/\"6f31891e0121ec5680ee6d14ad0865e8\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3828,24 +2965,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A18:1510E:B16458:D840F1:5D77B0E9", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E8:1C985:136097A:1709186:5DD104C2", + "content-length": "123" }, - "response": "{\n \"sha\": \"7ff771501ef36ed61eb6255ddee7c4762f2bb644\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"582c15e01261f4d9f862d6cdab723ab77fc772fc\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-second-title?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:24 GMT", - "Content-Type": "application/octet-stream", + "Date": "Sun, 17 Nov 2019 08:28:54 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3744", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3931", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3858,9 +2993,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A1A:244E4:B3FB1D:DA37F2:5D77B0EC", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F5:2E3EC:7B8D9D:94151E:5DD104C5", + "content-length": "0" }, "response": null, "status": 204 @@ -3869,18 +3003,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:25 GMT", + "Date": "Sun, 17 Nov 2019 08:28:54 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3743", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3930", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", - "Last-Modified": "Tue, 10 Sep 2019 14:19:22 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:52 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -3892,27 +3026,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1D:244EB:18A9C5F:1DF887A:5D77B0ED", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FA:2E3EE:234106B:29D9120:5DD104C6" }, "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"ebc456f03247359344a722d2644b801960bc9e91\",\"merge_method\":\"merge\"}", + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\",\"merge_method\":\"merge\"}", "method": "PUT", - "url": "/repos/owner/repo/pulls/1/merge?ts=900", + "url": "/repos/owner/repo/pulls/5/merge?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:27 GMT", + "Date": "Sun, 17 Nov 2019 08:28:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3742", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3929", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7cfb94085da7f02e6c85e88adfe75622\"", + "ETag": "W/\"6ef0968f1f56099e6bc748a433436e43\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3924,24 +3057,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A1E:244EB:18A9CA4:1DF88DA:5D77B0ED", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FB:1C993:2D873CB:36036D1:5DD104C6", + "content-length": "123" }, - "response": "{\n \"sha\": \"3d4e48f9350a97f96e9bc81367015578fe9253e1\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"2913216cef877627fac8f3b8306fb724eddff5e3\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=900", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:28 GMT", - "Content-Type": "application/octet-stream", + "Date": "Sun, 17 Nov 2019 08:28:57 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3741", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3928", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -3954,9 +3085,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "7A20:2B1F:12A1C74:16BFD97:5D77B0EF", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1810:1C98C:23AF24E:2A3A1FB:5DD104C9", + "content-length": "0" }, "response": null, "status": 204 @@ -3965,18 +3095,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:19:29 GMT", + "Date": "Sun, 17 Nov 2019 08:28:58 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3740", - "X-RateLimit-Reset": "1568128657", + "X-RateLimit-Remaining": "3927", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:19:26 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:28:55 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -3988,8 +3118,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7A22:1510E:B16994:D84786:5D77B0F1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1816:34218:2F6AADB:382E07D:5DD104CA" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json index edb8abdd..ec540bb9 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json @@ -3,17 +3,17 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:05 GMT", + "Date": "Sun, 17 Nov 2019 08:26:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4150", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4089", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", - "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", + "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AA8:244EB:185144A:1D8B1BB:5D77AD91", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F2:23E1A:21EB4EA:2845C52:5DD10446", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:06 GMT", + "Date": "Sun, 17 Nov 2019 08:26:47 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4149", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4088", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b012f66bdc5dac880675f7690dfc9d69\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"c928704989a4d83260358d954f55df9b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AAA:244EB:1851548:1D8B2F4:5D77AD91", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18F6:34218:2F60E61:382238A:5DD10447", + "content-length": "7296" }, - "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:04:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:26:19Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Date": "Sun, 17 Nov 2019 08:26:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4148", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4087", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,28 +89,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AAC:15110:18CAEC8:1E20A50:5D77AD92", - "content-length": "7422", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FB:8070:22F0D80:297F6D1:5DD10448", + "content-length": "2030" }, - "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Date": "Sun, 17 Nov 2019 08:26:48 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4147", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4086", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,59 +121,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AAE:B4DC:ADD5E9:D38832:5D77AD92", - "content-length": "12362", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FC:34216:133D1B3:16CF08C:5DD10448", + "content-length": "3484" }, - "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4146", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB4:2B1F:125C7D0:166A12D:5D77AD93", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Date": "Sun, 17 Nov 2019 08:26:48 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4145", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4085", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -188,9 +152,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB0:B4DE:1229040:161CBBA:5D77AD93", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FD:34217:235E1DD:2A06FB3:5DD10448", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -199,16 +162,16 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Date": "Sun, 17 Nov 2019 08:26:48 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4144", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4084", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -220,27 +183,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AB2:2B19:ABA2A4:D0F07D:5D77AD93", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18FF:2E3ED:13A162E:176DE73:5DD10448", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Date": "Sun, 17 Nov 2019 08:26:48 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4143", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4083", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -252,9 +214,39 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ABA:2B0F:1A6AC8:205D30:5D77AD93", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1900:34215:79AA4F:91AB31:5DD10448", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:26:49 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4082", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1901:34218:2F60FF6:382255D:5DD10448", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 @@ -263,16 +255,16 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:08 GMT", + "Date": "Sun, 17 Nov 2019 08:26:49 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4142", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4081", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -284,9 +276,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC1:3ED77:ADD097:D2BE32:5D77AD93", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1903:34218:2F60FF6:382255E:5DD10448", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 @@ -295,18 +286,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:11 GMT", + "Date": "Sun, 17 Nov 2019 08:26:52 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "472", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4141", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4080", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:34 GMT", + "ETag": "\"722009167bdca0ab4649e7b79fda9e4c19670f65\"", + "Last-Modified": "Sun, 17 Nov 2019 08:25:48 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -318,23 +309,50 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC2:B4D7:1ADF35:20DCD6:5D77AD96", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34217:235E5BD:2A07456:5DD1044C" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"0921e01c94d2acbee9496778b4b603289f3abf42\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"153c21608068de21e3b026130431ed9ff2ffa613\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:26:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4079", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1914:34218:2F61465:3822ABC:5DD1044C", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:12 GMT", + "Date": "Sun, 17 Nov 2019 08:26:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4140", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4078", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -346,9 +364,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC4:2B19:ABA6F0:D0F5C5:5D77AD97", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C993:2D7D4E1:35F79FF:5DD1044C", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -357,13 +374,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:12 GMT", + "Date": "Sun, 17 Nov 2019 08:26:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4139", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4077", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -375,38 +392,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACB:244E7:11DC3C4:15CCA64:5D77AD98", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4138", - "X-RateLimit-Reset": "1568126651", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AC7:3ED76:4985D5:5A20CE:5D77AD97", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1919:8072:2E399DC:36E40B2:5DD1044D", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -416,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:13 GMT", + "Date": "Sun, 17 Nov 2019 08:26:54 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4137", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4076", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -439,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACD:B4DC:ADDBE1:D38FB1:5D77AD99", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191E:2E3F0:3008E3E:38D3F43:5DD1044E" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -449,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:14 GMT", + "Date": "Sun, 17 Nov 2019 08:26:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4136", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4075", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -470,199 +456,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ACE:244E7:11DC588:15CCC8A:5D77AD99", - "content-length": "5961", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1924:8070:22F13FF:297FEAD:5DD1044F", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4135", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD0:9D1F:A52279:C98877:5D77AD9A", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4134", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD3:1510F:126AD6C:165B822:5D77AD9B", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4133", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD4:9D21:17814BD:1CA4B1F:5D77AD9B", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4132", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AD6:244E7:11DC914:15CD0E5:5D77AD9C", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4131", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7ADD:9D1D:19EAFD:1FA59F:5D77AD9D", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:18 GMT", + "Date": "Sun, 17 Nov 2019 08:26:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4130", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4074", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -672,31 +490,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE0:15110:18CC1B4:1E221F4:5D77AD9D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1925:1C98C:23A6807:2A30046:5DD1044F" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:19 GMT", + "Date": "Sun, 17 Nov 2019 08:26:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4129", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4073", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dfd24bd9781db5ec8bd97b3894a45d05\"", + "ETag": "\"ecef03640fc868d33c1ab1a4fdd2048c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4ec563a377588964d6a810526269b3ad89c2e5eb", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -706,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE1:2B19:ABAD14:D0FD8B:5D77AD9E", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1929:8072:2E39E08:36E457D:5DD10450" }, - "response": "{\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmVmNDRlY2RkMTkyNzMyNGUzOTNhODYxYjY1NGMzMmYwNzI2N2U3YTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"html_url\": \"https://github.com/owner/repo/commit/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:18Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:18Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjRlYzU2M2EzNzc1ODg5NjRkNmE4MTA1MjYyNjliM2FkODljMmU1ZWI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"html_url\": \"https://github.com/owner/repo/commit/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:26:56Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:26:56Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"ef44ecdd1927324e393a861b654c32f07267e7a5\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"4ec563a377588964d6a810526269b3ad89c2e5eb\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:20 GMT", + "Date": "Sun, 17 Nov 2019 08:26:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4128", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4072", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"526f10d25bb707f54e83ea57495c89bc\"", + "ETag": "\"025beaeeebd82ff592f24c706ba7e57d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -740,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE2:15110:18CC41C:1E22501:5D77AD9F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192E:1C993:2D7DA81:35F80B0:5DD10450" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\"\n }\n}\n", "status": 201 }, { @@ -751,17 +566,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:21 GMT", + "Date": "Sun, 17 Nov 2019 08:26:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4127", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4071", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"30c9169be3a658727e6f1cd00b6ff596\"", + "ETag": "\"6137dea301beac891aef5d3b18cc56a2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/4", @@ -774,27 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE5:244EB:1852DFC:1D8D1A7:5D77ADA0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1935:470C9:22BA6E8:2942B7C:5DD10452" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316012485,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyNDg1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:05:21Z\",\n \"updated_at\": \"2019-09-10T14:05:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 341831899,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxODk5\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:26:58Z\",\n \"updated_at\": \"2019-11-17T08:26:58Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:26:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:26:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/4ec563a377588964d6a810526269b3ad89c2e5eb\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:22 GMT", + "Date": "Sun, 17 Nov 2019 08:26:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4126", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4070", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"707e80d46b2bb7a482fe662906717299\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"a2ff110c148f5eb1defef3e25360b6db\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -807,32 +621,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE6:9D1F:A52853:C98FA2:5D77ADA1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1939:1C98C:23A6B84:2A30461:5DD10453", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/87c75d755bc91b74ec351d37fc954d98a069e22b\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:23 GMT", + "Date": "Sun, 17 Nov 2019 08:27:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4125", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4069", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f9e2ac953e16bf997e18236a26e7922f\"", + "ETag": "\"1e0aee9ce256cbe1c54d0e68d907730e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -842,64 +655,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AE9:9D1D:19EC4E:1FA73E:5D77ADA2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193F:2E3F0:30095A9:38D480B:5DD10453" }, - "response": "{\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n}\n", + "response": "{\n \"sha\": \"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/7608b9572ad48763308d6110ca472cb24034fce8?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4124", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a4fbdc873ee13afead93882b4f1fc79\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEA:244EB:18532F9:1D8D7EE:5D77ADA3", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"7608b9572ad48763308d6110ca472cb24034fce8\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"da49698b9d7fb2daec1e3aea831fda81017ef760\"}]}", + "body": "{\"base_tree\":\"87c75d755bc91b74ec351d37fc954d98a069e22b\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:24 GMT", + "Date": "Sun, 17 Nov 2019 08:27:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4123", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4068", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c4fc2e435958eb786346f2e260624b01\"", + "ETag": "\"521ed52f6d92f95a45996c08fa37296e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57", + "Location": "https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -909,31 +688,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AEE:3ED77:ADDF5D:D2D059:5D77ADA4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1940:470C7:14E3C0A:18A1D1C:5DD10454" }, - "response": "{\n \"sha\": \"7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7119c07f4926027a72e81f5fe7d35b7279200e57\",\"parents\":[\"7608b9572ad48763308d6110ca472cb24034fce8\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\"parents\":[\"87c75d755bc91b74ec351d37fc954d98a069e22b\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:25 GMT", + "Date": "Sun, 17 Nov 2019 08:27:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4122", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4067", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ca5565df4df7b12a87c446da541aa9e5\"", + "ETag": "\"c3181ef36460a3b89e4facb902022d25\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3f65fe261c95f63b63e42a73d49506e38e820e7f", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -943,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF0:2B19:ABB284:D10460:5D77ADA4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1945:8070:22F1A80:2980676:5DD10455" }, - "response": "{\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmMzOWZhNzIyM2Y3YjQyNzkyNjk0MWQ3YmU4Y2NhNzBmYTBmZmNkYWU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"html_url\": \"https://github.com/owner/repo/commit/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:25Z\"\n },\n \"tree\": {\n \"sha\": \"7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"html_url\": \"https://github.com/owner/repo/commit/7608b9572ad48763308d6110ca472cb24034fce8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjNmNjVmZTI2MWM5NWY2M2I2M2U0MmE3M2Q0OTUwNmUzOGU4MjBlN2Y=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:01Z\"\n },\n \"tree\": {\n \"sha\": \"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"html_url\": \"https://github.com/owner/repo/commit/87c75d755bc91b74ec351d37fc954d98a069e22b\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\"force\":false}", + "body": "{\"sha\":\"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:26 GMT", + "Date": "Sun, 17 Nov 2019 08:27:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4121", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4066", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d773c99c27130e098d9beca5bd3aabe7\"", + "ETag": "W/\"c16276dbcdde13e398f2a3329bfaeca9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -975,57 +752,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF2:2B24:1815FDA:1D48ACD:5D77ADA5", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1949:23E1B:2EAC439:374F86B:5DD10456", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:27 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4120", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:05:18 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF4:B4DC:ADE765:D39E02:5D77ADA7", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f65fe261c95f63b63e42a73d49506e38e820e7f\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:27 GMT", + "Date": "Sun, 17 Nov 2019 08:27:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4119", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4065", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1037,27 +780,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF6:1510C:1850C0:1DC8B2:5D77ADA7", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1952:34218:2F6245C:3823DD9:5DD10458", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:28 GMT", + "Date": "Sun, 17 Nov 2019 08:27:04 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4064", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:56 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1953:2E3F0:3009E0A:38D51DC:5DD10458" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4118", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4063", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "ETag": "W/\"617ffbf664fcf5e672b6bcbc1d84cd58\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1069,28 +843,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AF8:B4E0:1701B45:1C01643:5D77ADA8", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1958:806E:1399899:174FB1A:5DD10458", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:28 GMT", + "Date": "Sun, 17 Nov 2019 08:27:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4117", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4062", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"293e41ef281105d384c359ab72433629\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"466ea58a7e969128dc5458854c920d8d\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1103,27 +876,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFA:9D21:1782888:1CA63CF:5D77ADA8", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1959:2E3F0:3009F99:38D53CD:5DD10459", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:29 GMT", + "Date": "Sun, 17 Nov 2019 08:27:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4116", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4061", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"62cd00f49631f742c6faec9525dfcdc6\"", + "ETag": "W/\"893f7dfc16e2e9e9188ebf00266668a2\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1135,29 +907,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFC:B4E0:1701CA5:1C017E6:5D77ADA8", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195A:8072:2E3AC72:36E56B4:5DD10459", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316012485,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyNDg1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:05:21Z\",\n \"updated_at\": \"2019-09-10T14:05:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"53de7d8163d48f3d7376e0ef002d30621dda0dfb\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 341831899,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxODk5\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:26:58Z\",\n \"updated_at\": \"2019-11-17T08:26:58Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"d9925d29e87d397b5a0c9b73dbc91581f0bf5ff7\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:27:03Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:26:21Z\",\n \"pushed_at\": \"2019-11-17T08:27:03Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/4ec563a377588964d6a810526269b3ad89c2e5eb\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:30 GMT", + "Date": "Sun, 17 Nov 2019 08:27:06 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4115", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4060", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:05:18 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:26:56 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1169,8 +940,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7AFE:3ED76:498F90:5A2CA1:5D77ADA9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1960:8072:2E3AD69:36E57DE:5DD1045A" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1179,13 +949,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:30 GMT", + "Date": "Sun, 17 Nov 2019 08:27:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4114", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4059", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1197,9 +967,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B00:1510E:AEC73A:D4FF8F:5D77ADA9", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195F:23E1B:2EACA8C:374FFA1:5DD1045A", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1208,17 +977,17 @@ "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:31 GMT", + "Date": "Sun, 17 Nov 2019 08:27:07 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4113", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4058", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d773c99c27130e098d9beca5bd3aabe7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"c16276dbcdde13e398f2a3329bfaeca9\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1231,32 +1000,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B03:3ED7B:129DB5C:169E369:5D77ADAA", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1965:2E3F0:300A2F8:38D57A6:5DD1045A", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f65fe261c95f63b63e42a73d49506e38e820e7f\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:31 GMT", + "Date": "Sun, 17 Nov 2019 08:27:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4112", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4057", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ea824c29e37a2ec5f2ff5114cd1859e1\"", + "ETag": "\"1d5f6a0636651138c48ae113b06975b7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1266,64 +1034,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B04:15110:18CD7BF:1E23D70:5D77ADAB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1966:34217:235F906:2A08AE4:5DD1045B" }, - "response": "{\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n}\n", + "response": "{\n \"sha\": \"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/c39fa7223f7b427926941d7be8cca70fa0ffcdae?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:05:32 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4111", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7ce242728b8caf28e60c16105bf20be0\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B06:B4DC:ADEB76:D3A30D:5D77ADAB", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"91ab206cbd21d556d2d4ede0300567ef11a59a79\"}]}", + "body": "{\"base_tree\":\"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:33 GMT", + "Date": "Sun, 17 Nov 2019 08:27:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4110", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4056", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ea406eb51129140cecb05c0060a2a129\"", + "ETag": "\"d7c1adb7d1c6ec9d64237dee6b0fbdc1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948", + "Location": "https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1333,31 +1067,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B08:9D21:1782FCE:1CA6CDA:5D77ADAC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196B:1C97B:2B0086:334B56:5DD1045C" }, - "response": "{\n \"sha\": \"ae61c835d834b0871af5da1837e53687431b3948\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ae61c835d834b0871af5da1837e53687431b3948\",\"parents\":[\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\"parents\":[\"3f65fe261c95f63b63e42a73d49506e38e820e7f\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:34 GMT", + "Date": "Sun, 17 Nov 2019 08:27:09 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4109", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4055", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d12fdf00ed9a30ab2dee6fd681d7bd40\"", + "ETag": "\"45c14ba35903fd4cea667ca91ecf8190\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8757b52d03da15a52a8d1efac6c75f9703e13227", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1367,26 +1100,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0A:3ED82:18C7979:1E27577:5D77ADAD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1970:23E19:141816D:17C776F:5DD1045C" }, - "response": "{\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjgwMjAzZDcyOWVkYWFkNjhlMDgyNWQyMmIxYWIwMDQ0M2MzMDVhZWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"html_url\": \"https://github.com/owner/repo/commit/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:33Z\"\n },\n \"tree\": {\n \"sha\": \"ae61c835d834b0871af5da1837e53687431b3948\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"html_url\": \"https://github.com/owner/repo/commit/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3Ojg3NTdiNTJkMDNkYTE1YTUyYThkMWVmYWM2Yzc1Zjk3MDNlMTMyMjc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"html_url\": \"https://github.com/owner/repo/commit/8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:09Z\"\n },\n \"tree\": {\n \"sha\": \"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f65fe261c95f63b63e42a73d49506e38e820e7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/3f65fe261c95f63b63e42a73d49506e38e820e7f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "url": "/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:34 GMT", + "Date": "Sun, 17 Nov 2019 08:27:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4108", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4054", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "ETag": "W/\"617ffbf664fcf5e672b6bcbc1d84cd58\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1398,28 +1130,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0C:244EB:185438C:1D8EC8A:5D77ADAD", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1976:23E1B:2EAD19E:37507F0:5DD1045E", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status\"\n}\n", "status": 200 }, { - "body": "{\"sha\":\"80203d729edaad68e0825d22b1ab00443c305aea\",\"force\":false}", + "body": "{\"sha\":\"8757b52d03da15a52a8d1efac6c75f9703e13227\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:35 GMT", + "Date": "Sun, 17 Nov 2019 08:27:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4107", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4053", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"917541c1f67bac4c6c8523a95bf41b2e\"", + "ETag": "W/\"70c2419f7451c5e3ce6e19dec1a7efb7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1431,28 +1162,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B0E:2B15:4F5DB7:605A83:5D77ADAE", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1975:1C98C:23A79CF:2A314EC:5DD1045D", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8757b52d03da15a52a8d1efac6c75f9703e13227\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:38 GMT", + "Date": "Sun, 17 Nov 2019 08:27:12 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4105", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4052", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"917541c1f67bac4c6c8523a95bf41b2e\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"70c2419f7451c5e3ce6e19dec1a7efb7\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1465,32 +1195,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B10:9D20:1188E37:157268F:5D77ADB1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1980:2E3ED:13A24D9:176EFBA:5DD1045F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8757b52d03da15a52a8d1efac6c75f9703e13227\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:39 GMT", + "Date": "Sun, 17 Nov 2019 08:27:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4103", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4050", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8e34e6609d519fdd17c5759723261b02\"", + "ETag": "\"7cd307ee13e09caf3c2619f63f4b4ed4\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/49e544fb057bdaed92d1c485f00c539fd7a4fc31", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1500,26 +1229,156 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B16:1510F:126CADB:165DC93:5D77ADB2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1983:1C985:135D72E:170551A:5DD10460" }, - "response": "{\n \"sha\": \"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"\n}\n", + "response": "{\n \"sha\": \"49e544fb057bdaed92d1c485f00c539fd7a4fc31\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/49e544fb057bdaed92d1c485f00c539fd7a4fc31\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "body": "{\"base_tree\":\"8757b52d03da15a52a8d1efac6c75f9703e13227\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"49e544fb057bdaed92d1c485f00c539fd7a4fc31\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:39 GMT", + "Date": "Sun, 17 Nov 2019 08:27:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4048", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"158f72a1b3d726100a45e71e31023829\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/02584d3f54bb78d246cca9ca890815b637204214", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1987:8072:2E3B77B:36E63D6:5DD10461" + }, + "response": "{\n \"sha\": \"02584d3f54bb78d246cca9ca890815b637204214\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02584d3f54bb78d246cca9ca890815b637204214\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"49e544fb057bdaed92d1c485f00c539fd7a4fc31\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/49e544fb057bdaed92d1c485f00c539fd7a4fc31\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"02584d3f54bb78d246cca9ca890815b637204214\",\"parents\":[\"8757b52d03da15a52a8d1efac6c75f9703e13227\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4046", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1430855c665da155db845563f6b9da6a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/0b626058c4a6737f640703ffec9c00ca999636db", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "198A:470CB:2D23744:3570A99:5DD10461" + }, + "response": "{\n \"sha\": \"0b626058c4a6737f640703ffec9c00ca999636db\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjBiNjI2MDU4YzRhNjczN2Y2NDA3MDNmZmVjOWMwMGNhOTk5NjM2ZGI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0b626058c4a6737f640703ffec9c00ca999636db\",\n \"html_url\": \"https://github.com/owner/repo/commit/0b626058c4a6737f640703ffec9c00ca999636db\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:13Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:13Z\"\n },\n \"tree\": {\n \"sha\": \"02584d3f54bb78d246cca9ca890815b637204214\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02584d3f54bb78d246cca9ca890815b637204214\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8757b52d03da15a52a8d1efac6c75f9703e13227\",\n \"html_url\": \"https://github.com/owner/repo/commit/8757b52d03da15a52a8d1efac6c75f9703e13227\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"0b626058c4a6737f640703ffec9c00ca999636db\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4101", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4044", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "ETag": "W/\"a72bd0368ff99e9647a2eaed2ff220cf\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "198F:2E3F0:300AEBD:38D6568:5DD10462", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0b626058c4a6737f640703ffec9c00ca999636db\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0b626058c4a6737f640703ffec9c00ca999636db\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4043", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a72bd0368ff99e9647a2eaed2ff220cf\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19A7:1C98C:23A80E2:2A31D27:5DD10463", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0b626058c4a6737f640703ffec9c00ca999636db\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0b626058c4a6737f640703ffec9c00ca999636db\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4042", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"617ffbf664fcf5e672b6bcbc1d84cd58\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1531,30 +1390,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B1A:B4DE:122B882:161FD74:5D77ADB3", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AB:1C993:2D7F7FB:35FA33D:5DD10463", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4ec563a377588964d6a810526269b3ad89c2e5eb/status\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/80203d729edaad68e0825d22b1ab00443c305aea?ts=300", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:40 GMT", + "Date": "Sun, 17 Nov 2019 08:27:16 GMT", "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", "Server": "GitHub.com", - "Status": "200 OK", + "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4100", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4041", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"45c28e91ac9e899b1b0e34f231b9da7c\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "\"1d5f6a0636651138c48ae113b06975b7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1564,32 +1424,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B1C:B4D3:B3671:CE79B:5D77ADB3", - "content-length": "895", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AD:1C993:2D7F82E:35FA37A:5DD10464" }, - "response": "{\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 + "response": "{\n \"sha\": \"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"\n}\n", + "status": 201 }, { - "body": "{\"base_tree\":\"80203d729edaad68e0825d22b1ab00443c305aea\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"}]}", + "body": "{\"base_tree\":\"0b626058c4a6737f640703ffec9c00ca999636db\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:40 GMT", + "Date": "Sun, 17 Nov 2019 08:27:17 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4098", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4040", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1bc7d0a158d5705cd61071acf81092f5\"", + "ETag": "\"d7c1adb7d1c6ec9d64237dee6b0fbdc1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531", + "Location": "https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1599,31 +1457,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B20:244EB:1854E3D:1D8F9C6:5D77ADB4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1A:21ECFC7:2847CBA:5DD10464" }, - "response": "{\n \"sha\": \"5936e633465b3470b56007dc49271258ffde4531\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4136c39cd2c26cbc34c08e0a7b4c81a66a71828a\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5936e633465b3470b56007dc49271258ffde4531\",\"parents\":[\"80203d729edaad68e0825d22b1ab00443c305aea\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\"parents\":[\"0b626058c4a6737f640703ffec9c00ca999636db\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:41 GMT", + "Date": "Sun, 17 Nov 2019 08:27:17 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4097", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4039", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e6800d525addf15b93a96bedf91dd3ce\"", + "ETag": "\"5d1593f849d027ffce15835e17b78325\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1ee1ff3567b33c1d0707616d56d7a425af9548df", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1633,27 +1490,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B26:15110:18CE778:1E25109:5D77ADB5", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B3:470C7:14E47A6:18A2ACC:5DD10465" }, - "response": "{\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmFmNTc3ZDJiMTE1YTUxNGZlOTAyZDhmN2JiNWNjNjUyYTA2ZTk2NTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"html_url\": \"https://github.com/owner/repo/commit/af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:41Z\"\n },\n \"tree\": {\n \"sha\": \"5936e633465b3470b56007dc49271258ffde4531\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"html_url\": \"https://github.com/owner/repo/commit/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFlZTFmZjM1NjdiMzNjMWQwNzA3NjE2ZDU2ZDdhNDI1YWY5NTQ4ZGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:17Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:17Z\"\n },\n \"tree\": {\n \"sha\": \"1cb2a1e5c69c99cb7a68317974c68c180cec17e6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1cb2a1e5c69c99cb7a68317974c68c180cec17e6\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"0b626058c4a6737f640703ffec9c00ca999636db\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0b626058c4a6737f640703ffec9c00ca999636db\",\n \"html_url\": \"https://github.com/owner/repo/commit/0b626058c4a6737f640703ffec9c00ca999636db\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\"force\":false}", + "body": "{\"sha\":\"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:42 GMT", + "Date": "Sun, 17 Nov 2019 08:27:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4096", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4038", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a7bbed77edfed69439cd4e6b0b2646e3\"", + "ETag": "W/\"4621da04c135f6f1aaaec7c746f92a71\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1665,28 +1521,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2A:2B19:ABC124:D11666:5D77ADB5", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B4:23E19:14186C9:17C7DB4:5DD10466", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee1ff3567b33c1d0707616d56d7a425af9548df\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:05:43 GMT", + "Date": "Sun, 17 Nov 2019 08:27:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4095", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "4037", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a7bbed77edfed69439cd4e6b0b2646e3\"", - "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "ETag": "W/\"4621da04c135f6f1aaaec7c746f92a71\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1699,11 +1554,207 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B2E:15110:18CEAA7:1E254FE:5D77ADB6", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B5:34218:2F637A0:3825509:5DD10467", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee1ff3567b33c1d0707616d56d7a425af9548df\"\n }\n}\n", "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4036", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1e0aee9ce256cbe1c54d0e68d907730e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19B6:470CB:2D24051:3571523:5DD10468" + }, + "response": "{\n \"sha\": \"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4035", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"521ed52f6d92f95a45996c08fa37296e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19B7:470CB:2D24146:357163A:5DD10468" + }, + "response": "{\n \"sha\": \"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/855a7dc8c8a307ea7ea8c37170d327915b5f3f8e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\"parents\":[\"1ee1ff3567b33c1d0707616d56d7a425af9548df\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4034", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"81d7e41ae0862dd2cf001a69801ef2d8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/a305347d824235ddcac216fab6d392ddaddb1e53", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19BB:23E1A:21ED41A:28481EC:5DD10469" + }, + "response": "{\n \"sha\": \"a305347d824235ddcac216fab6d392ddaddb1e53\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmEzMDUzNDdkODI0MjM1ZGRjYWMyMTZmYWI2ZDM5MmRkYWRkYjFlNTM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a305347d824235ddcac216fab6d392ddaddb1e53\",\n \"html_url\": \"https://github.com/owner/repo/commit/a305347d824235ddcac216fab6d392ddaddb1e53\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:27:21Z\"\n },\n \"tree\": {\n \"sha\": \"a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a3b690a1bfa3f1a0fc728a7fdc63956479b541cb\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee1ff3567b33c1d0707616d56d7a425af9548df\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ee1ff3567b33c1d0707616d56d7a425af9548df\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"a305347d824235ddcac216fab6d392ddaddb1e53\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4033", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a226d3ccdeb97c38cd52d86d6cd207e3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C3:2E3EE:233C097:29D3048:5DD1046A", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a305347d824235ddcac216fab6d392ddaddb1e53\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a305347d824235ddcac216fab6d392ddaddb1e53\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4032", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a226d3ccdeb97c38cd52d86d6cd207e3\"", + "Last-Modified": "Sun, 17 Nov 2019 08:26:21 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C6:23E1B:2EAE2EF:3751CB1:5DD1046B", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a305347d824235ddcac216fab6d392ddaddb1e53\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a305347d824235ddcac216fab6d392ddaddb1e53\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI0ZWM1NjNhMzc3NTg4OTY0ZDZhODEwNTI2MjY5YjNhZDg5YzJlNWViIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:27:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4031", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7cd307ee13e09caf3c2619f63f4b4ed4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/49e544fb057bdaed92d1c485f00c539fd7a4fc31", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C7:23E1B:2EAE382:3751D60:5DD1046B" + }, + "response": "{\n \"sha\": \"49e544fb057bdaed92d1c485f00c539fd7a4fc31\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/49e544fb057bdaed92d1c485f00c539fd7a4fc31\"\n}\n", + "status": 201 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json index f4fe8f1f..09d3d94e 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:02 GMT", + "Date": "Sun, 17 Nov 2019 08:22:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4325", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4237", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4880bc2ffd21970e7cfd4dcfdfbd1a52\"", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E16:33B07:19DFA62:1F3BD82:5DCBBB85", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F2:2E3EE:232B6ED:29BF4AE:5DD10362", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:03 GMT", + "Date": "Sun, 17 Nov 2019 08:22:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4324", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4236", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"309f3d2e82a4c145f7898908e315f9b0\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"b3717ece455f73a91ecd136e2c5641f9\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,61 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1B:3A597:8E59C3D:A93702F:5DCBBB86", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F6:23E1A:21DE46C:283622F:5DD10362", + "content-length": "7296" }, - "response": "{\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:14:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4323", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1F:3A597:8E59E31:A937281:5DCBBB87", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:22:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", + "Date": "Sun, 17 Nov 2019 08:22:59 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4322", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4235", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fa55c4c5b0a11b04c546f6d28181ea16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,30 +89,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E24:43EF3:3A57F00:45E86C3:5DCBBB87", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FC:470C9:22AA7DD:292FEB2:5DD10363", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", - "Content-Type": "text/plain; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4321", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4234", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -156,56 +121,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2A:BBFA:880EFB5:A2C014C:5DCBBB88", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19FB:1C98C:2396A19:2A1D5A3:5DD10363", + "content-length": "2030" }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4320", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E29:2CFED:906DF25:ABF1E90:5DCBBB88", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4319", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4233", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -220,9 +152,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E28:2CFDF:9A7825:B9F1DA:5DCBBB88", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1803:1C993:2D6945F:35DFFAC:5DD10364", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -231,13 +162,13 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4318", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4232", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -252,24 +183,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E26:43EF8:8A2A223:A48BC3A:5DCBBB88", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1802:470C9:22AA868:292FF62:5DD10364", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:04 GMT", + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4317", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4231", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1804:8072:2E262D8:36CCE7A:5DD10364", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4230", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", @@ -284,24 +245,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2E:BBF5:3C5132A:481589C:5DCBBB88", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1806:2E3F0:2FF3785:38BAC72:5DD10364", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:08 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:23:00 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4316", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4229", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -313,9 +276,36 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E3F:450D5:3AF97D6:469A680:5DCBBB8B", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1805:34218:2F4F4EE:380D0BD:5DD10364", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4228", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1813:470C7:14DB48B:1897C5B:5DD10367", + "content-length": "144" }, "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -324,13 +314,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:08 GMT", + "Date": "Sun, 17 Nov 2019 08:23:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4315", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4227", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -342,9 +332,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E40:2CFED:906E6CE:ABF27D0:5DCBBB8C", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1815:34213:E6107:10EDED:5DD10368", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -354,17 +343,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:09 GMT", + "Date": "Sun, 17 Nov 2019 08:23:05 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4314", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4226", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d0a8541ef3440de489e62d15bb05854b\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -377,8 +366,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E46:2CFE8:3EB698E:4B3E324:5DCBBB8C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1819:806E:1391D11:1746626:5DD10368" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -387,16 +375,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:10 GMT", + "Date": "Sun, 17 Nov 2019 08:23:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4313", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4225", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bb3b66329706e70384accb3f20478532\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -408,196 +396,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4A:450D6:6A5285F:7EA087F:5DCBBB8D", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181E:8070:22E38C1:296F8CA:5DD10369", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4312", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"121de22197fa5694926268a716f80fab\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E4B:3A597:8E5AA8C:A938196:5DCBBB8E", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:11 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4311", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1cd588fc71610502edc9be982660e32e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E50:450D6:6A52A71:7EA0AF4:5DCBBB8F", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:11 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4310", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E55:2CFE8:3EB6C17:4B3E632:5DCBBB8F", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4309", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7d4b0fff22e77dfbf2ad0944a40ae315\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E56:450D6:6A52C1B:7EA0CE2:5DCBBB90", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4308", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"efe05bca32b2dd06d936a7f74bfcd3a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E5B:33B0A:8AB12F7:A571C98:5DCBBB90", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:14 GMT", + "Date": "Sun, 17 Nov 2019 08:23:06 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4307", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4224", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"15d9853781c1cd716eab166c5311f411\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -610,8 +430,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E60:3A596:65BB375:798314F:5DCBBB91", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1823:1C98C:239740F:2A1E0FC:5DD1036A" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -621,20 +440,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:14 GMT", + "Date": "Sun, 17 Nov 2019 08:23:07 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4306", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4223", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a5ad29ab55265e3633f2435ebfb3c540\"", + "ETag": "\"a9905868723cd654afe7a62ab6e555ef\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/adf197b5bd77593ee8bb73de8caba379857ef24c", + "Location": "https://api.github.com/repos/owner/repo/git/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -644,28 +463,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E61:3A595:3E0A217:4A2B1A5:5DCBBB92", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1824:806E:1391EB0:1746807:5DD1036A" }, - "response": "{\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OmFkZjE5N2I1YmQ3NzU5M2VlOGJiNzNkZThjYWJhMzc5ODU3ZWYyNGM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"html_url\": \"https://github.com/owner/repo/commit/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:14Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjE0ZWZjNDliMTU4MDY3YTgzYjMzY2EwNzA3ZWMxYTEwZmNkYjdjMDk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"html_url\": \"https://github.com/owner/repo/commit/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:07Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:07Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"adf197b5bd77593ee8bb73de8caba379857ef24c\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"14efc49b158067a83b33ca0707ec1a10fcdb7c09\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:15 GMT", + "Date": "Sun, 17 Nov 2019 08:23:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4305", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4222", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"758ae19e3c7cd29206d255cd1f32e067\"", + "ETag": "\"786aae894cb102b1735c38c063e67732\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -678,10 +496,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E66:33B09:69AB8BC:7E244CE:5DCBBB93", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182A:470C9:22AB22F:2930ABD:5DD1036B" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/adf197b5bd77593ee8bb73de8caba379857ef24c\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09\"\n }\n}\n", "status": 201 }, { @@ -689,17 +506,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:17 GMT", + "Date": "Sun, 17 Nov 2019 08:23:10 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4304", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4221", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"738358e0d2a9d1d48d556f08913b14da\"", + "ETag": "\"6c304af2d56c3ee68e3054df91f9ea53\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/1", @@ -712,23 +529,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E6C:3A596:65BB69D:7983510:5DCBBB94", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182F:2E3EE:232C34E:29C0338:5DD1036C" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 340299240,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk5MjQw\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:15:16Z\",\n \"updated_at\": \"2019-11-13T08:15:16Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:15:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:15:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/adf197b5bd77593ee8bb73de8caba379857ef24c\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 341831651,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxNjUx\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:23:09Z\",\n \"updated_at\": \"2019-11-17T08:23:09Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:23:08Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:23:08Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/14efc49b158067a83b33ca0707ec1a10fcdb7c09\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:18 GMT", + "Date": "Sun, 17 Nov 2019 08:23:10 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4303", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4220", + "X-RateLimit-Reset": "1573980038", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -741,9 +557,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E75:450E4:899FD06:A3F0E1F:5DCBBB95", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1838:2E3EC:7B353F:93ADD8:5DD1036E", + "content-length": "113" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", "status": 404 @@ -753,17 +568,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:18 GMT", + "Date": "Sun, 17 Nov 2019 08:23:11 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4302", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4219", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b800c804fccb3072c7f33b4dd032d41a\"", + "ETag": "\"9f321048296fc1b0be6bfa55812c8536\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", @@ -776,8 +591,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E76:3A596:65BB977:798388C:5DCBBB96", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183B:2E3ED:1399619:17646D6:5DD1036E" }, "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", "status": 201 @@ -787,17 +601,17 @@ "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:19 GMT", + "Date": "Sun, 17 Nov 2019 08:23:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "561", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4301", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4218", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"73b7e58f893f954ba470b06db3214b98\"", + "ETag": "\"3a83e651f80e58e57e31e3aaa8bd3cce\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", @@ -810,8 +624,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E7B:3A593:8D92CB:A98934:5DCBBB97", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183E:34217:234F38B:29F5627:5DD1036F" }, "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -821,20 +634,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:20 GMT", + "Date": "Sun, 17 Nov 2019 08:23:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1105", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4300", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4217", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5e1a43086c26bdd1062ed6c7caedd9d3\"", + "ETag": "\"fcdf363769e3646511a7c4ad4b4be7c5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/c121fc71f89bbd978977f26f04fdc676bd5b987a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/73330c54f0ea4c5342c57680bc25f5984825f40a", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -844,28 +657,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E80:3A597:8E5BA47:A939481:5DCBBB97", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1843:806C:88E289:A2C205:5DD10370" }, - "response": "{\n \"sha\": \"c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OmMxMjFmYzcxZjg5YmJkOTc4OTc3ZjI2ZjA0ZmRjNjc2YmQ1Yjk4N2E=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"html_url\": \"https://github.com/owner/repo/commit/c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:20Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjczMzMwYzU0ZjBlYTRjNTM0MmM1NzY4MGJjMjVmNTk4NDgyNWY0MGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"html_url\": \"https://github.com/owner/repo/commit/73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:12Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"c121fc71f89bbd978977f26f04fdc676bd5b987a\"}", + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"73330c54f0ea4c5342c57680bc25f5984825f40a\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:21 GMT", + "Date": "Sun, 17 Nov 2019 08:23:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "484", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4299", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4216", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c60163d34e6f3249ee54d4fd30ac2394\"", + "ETag": "\"79995623074c45b9b20b09621138fda1\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", @@ -878,31 +690,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E85:3A595:3E0A7F8:4A2B89F:5DCBBB98", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1845:8070:22E40EC:2970234:5DD10370" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c121fc71f89bbd978977f26f04fdc676bd5b987a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/73330c54f0ea4c5342c57680bc25f5984825f40a\"\n }\n}\n", "status": 201 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJhZGYxOTdiNWJkNzc1OTNlZThiYjczZGU4Y2FiYTM3OTg1N2VmMjRjIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIxNGVmYzQ5YjE1ODA2N2E4M2IzM2NhMDcwN2VjMWExMGZjZGI3YzA5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:22 GMT", + "Date": "Sun, 17 Nov 2019 08:23:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4298", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4215", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"14693223dbae26cdc59d3668c7898fd5\"", + "ETag": "\"74715060db2941083f1e06a4036ca82e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/1bfd6b63e6be4113def169964426911a260c6545", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5676560a166d66b5ebd80687921be6b8ccdbe4a0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -912,64 +723,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8A:2CFEA:66C63E6:7A88974:5DCBBB99", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:8072:2E278C9:36CE825:5DD10372" }, - "response": "{\n \"sha\": \"1bfd6b63e6be4113def169964426911a260c6545\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1bfd6b63e6be4113def169964426911a260c6545\"\n}\n", + "response": "{\n \"sha\": \"5676560a166d66b5ebd80687921be6b8ccdbe4a0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5676560a166d66b5ebd80687921be6b8ccdbe4a0\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/c121fc71f89bbd978977f26f04fdc676bd5b987a?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4297", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"63182674240c18d0795e28cd849e6870\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E8B:33B0A:8AB228B:A572F80:5DCBBB9A", - "content-length": "561", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"c121fc71f89bbd978977f26f04fdc676bd5b987a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1bfd6b63e6be4113def169964426911a260c6545\"}]}", + "body": "{\"base_tree\":\"73330c54f0ea4c5342c57680bc25f5984825f40a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5676560a166d66b5ebd80687921be6b8ccdbe4a0\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:23 GMT", + "Date": "Sun, 17 Nov 2019 08:23:15 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4296", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4214", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bdb703e7bd5543e4eb24defefc042b56\"", + "ETag": "\"4716fceeb76191007a7e04c132544d2b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/37dd3dca194d1c210c0d5245fbcf277ab7360e9d", + "Location": "https://api.github.com/repos/owner/repo/git/trees/45570ca586f6aac8b1f4783e3ca25c8b2a1711c6", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -979,31 +756,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E90:43EF8:8A2C1BC:A48E2B7:5DCBBB9A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1850:23E19:140F62C:17BD368:5DD10373" }, - "response": "{\n \"sha\": \"37dd3dca194d1c210c0d5245fbcf277ab7360e9d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/37dd3dca194d1c210c0d5245fbcf277ab7360e9d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1bfd6b63e6be4113def169964426911a260c6545\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1bfd6b63e6be4113def169964426911a260c6545\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"45570ca586f6aac8b1f4783e3ca25c8b2a1711c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/45570ca586f6aac8b1f4783e3ca25c8b2a1711c6\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5676560a166d66b5ebd80687921be6b8ccdbe4a0\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5676560a166d66b5ebd80687921be6b8ccdbe4a0\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"37dd3dca194d1c210c0d5245fbcf277ab7360e9d\",\"parents\":[\"c121fc71f89bbd978977f26f04fdc676bd5b987a\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"45570ca586f6aac8b1f4783e3ca25c8b2a1711c6\",\"parents\":[\"73330c54f0ea4c5342c57680bc25f5984825f40a\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:24 GMT", + "Date": "Sun, 17 Nov 2019 08:23:16 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4295", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4213", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1e97a14e9699828c51204e3fc05ac719\"", + "ETag": "\"8fd7f02226421e8e1275f7628d55ddf3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/7ee98c01fbc6f81346ca057fc28114f52af23113", + "Location": "https://api.github.com/repos/owner/repo/git/commits/372bcb0f8878b3032eabea8682713ca80b5e87e1", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1013,27 +789,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E95:2CFED:90702D9:ABF493A:5DCBBB9B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1855:8070:22E43DA:29705A2:5DD10374" }, - "response": "{\n \"sha\": \"7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjdlZTk4YzAxZmJjNmY4MTM0NmNhMDU3ZmMyODExNGY1MmFmMjMxMTM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"html_url\": \"https://github.com/owner/repo/commit/7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:15:23Z\"\n },\n \"tree\": {\n \"sha\": \"37dd3dca194d1c210c0d5245fbcf277ab7360e9d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/37dd3dca194d1c210c0d5245fbcf277ab7360e9d\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c121fc71f89bbd978977f26f04fdc676bd5b987a\",\n \"html_url\": \"https://github.com/owner/repo/commit/c121fc71f89bbd978977f26f04fdc676bd5b987a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjM3MmJjYjBmODg3OGIzMDMyZWFiZWE4NjgyNzEzY2E4MGI1ZTg3ZTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"html_url\": \"https://github.com/owner/repo/commit/372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:16Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:16Z\"\n },\n \"tree\": {\n \"sha\": \"45570ca586f6aac8b1f4783e3ca25c8b2a1711c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/45570ca586f6aac8b1f4783e3ca25c8b2a1711c6\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/73330c54f0ea4c5342c57680bc25f5984825f40a\",\n \"html_url\": \"https://github.com/owner/repo/commit/73330c54f0ea4c5342c57680bc25f5984825f40a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"7ee98c01fbc6f81346ca057fc28114f52af23113\",\"force\":false}", + "body": "{\"sha\":\"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:25 GMT", + "Date": "Sun, 17 Nov 2019 08:23:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4294", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4212", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"84690ee7e7459d62a02fa2b89dade28c\"", + "ETag": "W/\"7483f189e94f4745744893e7254a650f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1045,57 +820,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E96:3A595:3E0AB79:4A2BCDB:5DCBBB9C", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185A:34217:234F994:29F5D58:5DD10374", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ee98c01fbc6f81346ca057fc28114f52af23113\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:15:26 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4292", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:15:14 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA0:33B0A:8AB2805:A57360C:5DCBBB9D", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/372bcb0f8878b3032eabea8682713ca80b5e87e1\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:26 GMT", + "Date": "Sun, 17 Nov 2019 08:23:18 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4293", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4211", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1107,30 +848,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E9F:3A597:8E5C44D:A93A07A:5DCBBB9D", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1865:8072:2E27D83:36CEDD9:5DD10376", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:27 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:23:18 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4291", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4210", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"795437c3e8e0a800683e5e47f3897103\"", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:23:07 GMT", "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -1139,27 +881,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EA7:3A597:8E5C56C:A93A1E7:5DCBBB9E", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1866:34218:2F50EA7:380EF04:5DD10376" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status\"\n}\n", + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status?ts=300", + "url": "/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:32 GMT", + "Date": "Sun, 17 Nov 2019 08:23:19 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4286", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4208", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"795437c3e8e0a800683e5e47f3897103\"", + "ETag": "W/\"def63cc3996e0127c8f612ce01ed19b6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1171,27 +911,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EC6:3A597:8E5CD8F:A93ABE3:5DCBBBA4", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1867:23E16:AC117:D210A:5DD10376", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status?ts=300", + "url": "/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:38 GMT", + "Date": "Sun, 17 Nov 2019 08:23:25 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4285", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4204", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"795437c3e8e0a800683e5e47f3897103\"", + "ETag": "W/\"def63cc3996e0127c8f612ce01ed19b6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1203,11 +942,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDF:33B0A:8AB3AE3:A574D2E:5DCBBBA9", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:8072:2E2853F:36CF70E:5DD1037C", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/adf197b5bd77593ee8bb73de8caba379857ef24c/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4203", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"def63cc3996e0127c8f612ce01ed19b6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18A7:34218:2F51BDD:380FEF8:5DD10382", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/14efc49b158067a83b33ca0707ec1a10fcdb7c09/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json index db4aa3a2..67936b29 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:32:59 GMT", + "Date": "Sun, 17 Nov 2019 08:29:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4995", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3922", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"496acf13d1be9fd5bf6d8a00634891c3\"", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F15:33B08:3F2516B:4B58F41:5DCBBFBA", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1900:34218:2F6E8FB:3832BA2:5DD104FD", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:00 GMT", + "Date": "Sun, 17 Nov 2019 08:29:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4994", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3921", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d0f71237dd25b2cfeb9779ffb496f1fb\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", + "ETag": "W/\"35b702492a9baf108104cb92e295d255\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F16:43EF6:67E1212:7C052D5:5DCBBFBB", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1908:34217:236A7A5:2A158C4:5DD104FD", + "content-length": "7296" }, - "response": "{\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:32:16Z\",\n \"updated_at\": \"2019-11-13T08:32:47Z\",\n \"pushed_at\": \"2019-11-13T08:32:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:29:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:01 GMT", + "Date": "Sun, 17 Nov 2019 08:29:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4993", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3920", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9835c1927bf02560d76fdc604fef463d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,9 +89,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F25:3A595:3E42652:4A6E6BF:5DCBBFBC", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3ED:13A8129:1775CEA:5DD104FE", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -102,17 +99,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:01 GMT", + "Date": "Sun, 17 Nov 2019 08:29:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4992", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3919", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b57958c89d50dd03c1f917343e1292d4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,120 +121,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F28:BBF8:698FA07:7DEB7FB:5DCBBFBC", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190E:2E3ED:13A812E:1775CED:5DD104FE", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:02 GMT", - "Content-Type": "text/plain; charset=iso-8859-1", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4991", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F43:33B0A:8B1EB97:A5F5EB4:5DCBBFBD", - "content-length": "1707", - "connection": "keep-alive" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:02 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4990", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F46:BBF8:698FB68:7DEB9D4:5DCBBFBE", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:02 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4989", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F47:33B0A:8B1EC24:A5F5F68:5DCBBFBE", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:02 GMT", + "Date": "Sun, 17 Nov 2019 08:29:51 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4988", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3917", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", @@ -252,24 +152,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F44:450E4:8A0B8C0:A473056:5DCBBFBE", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1911:470C9:22C62F6:295081D:5DD104FF", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:29:51 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3918", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "190F:8070:22FB3F8:298BF7A:5DD104FF", + "content-length": "1707" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:02 GMT", + "Date": "Sun, 17 Nov 2019 08:29:51 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4987", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3916", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", @@ -284,24 +214,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F45:3A596:660E5AE:79E73E4:5DCBBFBE", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1910:8072:2E4949B:36F6833:5DD104FF", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:05 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:29:51 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4986", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3915", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -313,24 +245,142 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F54:BBE2:BB541:F3B69:5DCBBFC0", - "content-length": "144", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1912:34218:2F6EB35:3832E64:5DD104FF", + "content-length": "16071" }, - "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:29:51 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3914", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1913:1C993:2D8BCCA:3608D9C:5DD104FF", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:29:54 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3913", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b118dc189e8fa5d8151b0e7e095b9f095d78b72c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:28:45 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1924:8072:2E4989B:36F6D09:5DD10502" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":\"59e7c46ebdd3c8ed9b0a4b7adde47b00f37ae2c5\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:29:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3912", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1925:1C985:13627CB:170B611:5DD10503", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Sun, 17 Nov 2019 08:29:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3911", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1926:8070:22FB799:298C3D1:5DD10503", + "content-length": "148" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:05 GMT", + "Date": "Sun, 17 Nov 2019 08:29:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4985", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3910", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -342,9 +392,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F55:450E4:8A0BF36:A4737F5:5DCBBFC1", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192B:1C98C:23B3298:2A3ED16:5DD10503", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -354,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:06 GMT", + "Date": "Sun, 17 Nov 2019 08:29:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4984", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3909", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c1746a53b5234632b7b7e3b6f80e0d95\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -377,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5F:43EF8:8A935AA:A50BA5F:5DCBBFC2", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E1A:21F6918:2853309:5DD10504" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -387,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:07 GMT", + "Date": "Sun, 17 Nov 2019 08:29:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4983", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3908", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e3c57a55d56a674eca5e61aff11ad4ff\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -408,196 +456,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F64:BBFA:88796EB:A3418FA:5DCBBFC3", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1931:2E3F0:3019BD3:38E7B48:5DD10504", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDEwMjc1OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9a17412bd9313f68024e814ce8448b02\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F69:BBFA:88797E9:A341A2F:5DCBBFC3", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"3da0f833f82db25a84a60b0fb31c2b11\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6A:43EF3:3A91CD4:462D4A0:5DCBBFC4", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9835c1927bf02560d76fdc604fef463d\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F70:2CFE8:3EEADA8:4B7DE05:5DCBBFC4", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"75c943d81c89f0e094c6cd5237b6551b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F71:43EF8:8A93AD6:A50C0B2:5DCBBFC5", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"16a115fd8f77d86aaa55a9daff01838d\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F76:450D5:3B2DAB1:46D959D:5DCBBFC6", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:11 GMT", + "Date": "Sun, 17 Nov 2019 08:29:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3907", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"da3639ea99292287881cff6985f8c4c8\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -610,8 +490,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7B:2CFEA:671C173:7AEFAF6:5DCBBFC6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470CB:2D307EA:3580162:5DD10505" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -621,20 +500,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:12 GMT", + "Date": "Sun, 17 Nov 2019 08:29:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3906", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"79746fe4b912e58d5e62349cc843bbd5\"", + "ETag": "\"ffc5e15a46e5fa5124a20febf3c2cb78\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/ad8cfbbdc16b887a711efbc372d2289463280db5", + "Location": "https://api.github.com/repos/owner/repo/git/commits/cd4a88d04f85629662fce10ececb021a81310f12", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -644,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F80:43EF3:3A91FCE:462D839:5DCBBFC7", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1939:1C993:2D8C4A8:3609704:5DD10505" }, - "response": "{\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDEwMjc1OmFkOGNmYmJkYzE2Yjg4N2E3MTFlZmJjMzcyZDIyODk0NjMyODBkYjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"html_url\": \"https://github.com/owner/repo/commit/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:12Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmNkNGE4OGQwNGY4NTYyOTY2MmZjZTEwZWNlY2IwMjFhODEzMTBmMTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"html_url\": \"https://github.com/owner/repo/commit/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:29:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:29:58Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"ad8cfbbdc16b887a711efbc372d2289463280db5\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"cd4a88d04f85629662fce10ececb021a81310f12\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:13 GMT", + "Date": "Sun, 17 Nov 2019 08:29:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3905", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8b35020ab1f0c31b754305786a907b24\"", + "ETag": "\"fe922d08443e02dadcaa617dfe8bc1ca\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -678,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F81:33B0A:8B1FF72:A5F765A:5DCBBFC8", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193C:2E3F0:3019E68:38E7E52:5DD10506" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDEwMjc1OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ad8cfbbdc16b887a711efbc372d2289463280db5\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cd4a88d04f85629662fce10ececb021a81310f12\"\n }\n}\n", "status": 201 }, { @@ -689,20 +566,20 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:14 GMT", + "Date": "Sun, 17 Nov 2019 08:30:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3904", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"bb236e7ecd2c9a9bcb89efc098abc2ec\"", + "ETag": "\"668694dd4bf688fcdb1235d762e3871e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "Location": "https://api.github.com/repos/owner/repo/pulls/8", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -712,23 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F86:3A597:8ECCC84:A9C13E1:5DCBBFC9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1941:470CB:2D30AA9:35804A9:5DD10507" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 340306310,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMzA2MzEw\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:33:14Z\",\n \"updated_at\": \"2019-11-13T08:33:14Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:32:16Z\",\n \"updated_at\": \"2019-11-13T08:32:47Z\",\n \"pushed_at\": \"2019-11-13T08:33:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:32:16Z\",\n \"updated_at\": \"2019-11-13T08:32:47Z\",\n \"pushed_at\": \"2019-11-13T08:33:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ad8cfbbdc16b887a711efbc372d2289463280db5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/8\",\n \"id\": 341832084,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMyMDg0\",\n \"html_url\": \"https://github.com/owner/repo/pull/8\",\n \"diff_url\": \"https://github.com/owner/repo/pull/8.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/8.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/8\",\n \"number\": 8,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:30:00Z\",\n \"updated_at\": \"2019-11-17T08:30:00Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/8/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:29:59Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:29:59Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/8\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/cd4a88d04f85629662fce10ececb021a81310f12\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:15 GMT", + "Date": "Sun, 17 Nov 2019 08:30:01 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3903", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a885c88124dff13e6282585518de22a\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -741,235 +621,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8F:450E4:8A0D10F:A474D6A:5DCBBFCB", - "content-length": "113", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1946:1C98C:23B37EB:2A3F36A:5DD10509", + "content-length": "484" }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", - "status": 404 - }, - { - "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3d5d9868645df6bf20653ae5ed2a6799\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F94:3A597:8ECD099:A9C189E:5DCBBFCB", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", - "status": 201 - }, - { - "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "561", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f2285163aa9bb6b584dd59c37b4f3fd0\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F95:450D3:1A9BDDF:1FE9C8E:5DCBBFCC", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:17 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1105", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7389e1dd8f924a352ac3b29ec3eb9efe\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/a7672b2e36ecb041295c9dc47373521247d5a703", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9A:450E4:8A0D47C:A475180:5DCBBFCD", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDEwMjc1OmE3NjcyYjJlMzZlY2IwNDEyOTVjOWRjNDczNzM1MjEyNDdkNWE3MDM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"html_url\": \"https://github.com/owner/repo/commit/a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:17Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:17Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"a7672b2e36ecb041295c9dc47373521247d5a703\"}", - "method": "POST", - "url": "/repos/owner/repo/git/refs?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:18 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "484", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b022bfe1938c1b9d95cfc158eace160f\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9F:450D6:6AA7B0C:7F07668:5DCBBFCD", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDEwMjc1OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a7672b2e36ecb041295c9dc47373521247d5a703\"\n }\n}\n", - "status": 201 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJhZDhjZmJiZGMxNmI4ODdhNzExZWZiYzM3MmQyMjg5NDYzMjgwZGI1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:19 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2fb78146563e95028a8ebc64646414f5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/a6d6556d9f90939f7238e01966e699b5419acd96", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA4:450D3:1A9BEE4:1FE9DCD:5DCBBFCF", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"a6d6556d9f90939f7238e01966e699b5419acd96\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a6d6556d9f90939f7238e01966e699b5419acd96\"\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/a7672b2e36ecb041295c9dc47373521247d5a703?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1cddede57c6279f7c0b25291ea8ecd28\"", - "Last-Modified": "Wed, 13 Nov 2019 08:32:47 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA9:43EF6:67E2EB3:7C074E5:5DCBBFCF", - "content-length": "561", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\"\n }\n}\n", "status": 200 }, { - "body": "{\"base_tree\":\"a7672b2e36ecb041295c9dc47373521247d5a703\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a6d6556d9f90939f7238e01966e699b5419acd96\"}]}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjgsImhlYWQiOiJjZDRhODhkMDRmODU2Mjk2NjJmY2UxMGVjZWNiMDIxYTgxMzEwZjEyIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", + "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:20 GMT", + "Date": "Sun, 17 Nov 2019 08:30:02 GMT", "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", + "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3902", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"5ab2dbd5afc9239aef5bf572f0bc6a5d\"", + "ETag": "\"a5b0829e51fd16dbcf8c8fc4a2b35181\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/15522ba6d70c522c7691f23d17aa48b37fcb88cc", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/c4a3a7f1ac5b5df4267b41845a4b309cfc2db623", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -979,31 +655,63 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAA:BBFA:887AC6F:A343308:5DCBBFD0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194C:470C7:14EA8E4:18A9DB3:5DD10509" }, - "response": "{\n \"sha\": \"15522ba6d70c522c7691f23d17aa48b37fcb88cc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/15522ba6d70c522c7691f23d17aa48b37fcb88cc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a6d6556d9f90939f7238e01966e699b5419acd96\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a6d6556d9f90939f7238e01966e699b5419acd96\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\"\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"15522ba6d70c522c7691f23d17aa48b37fcb88cc\",\"parents\":[\"a7672b2e36ecb041295c9dc47373521247d5a703\"]}", + "body": "{\"base_tree\":\"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:30:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3901", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3eee3970daf6e2d23173d102892dcba9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c15213f81e6529b9c5506f33d6e3ce4a72df8cfa", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1951:470C9:22C6D65:29514AC:5DD1050A" + }, + "response": "{\n \"sha\": \"c15213f81e6529b9c5506f33d6e3ce4a72df8cfa\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c15213f81e6529b9c5506f33d6e3ce4a72df8cfa\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c15213f81e6529b9c5506f33d6e3ce4a72df8cfa\",\"parents\":[\"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:21 GMT", + "Date": "Sun, 17 Nov 2019 08:30:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3900", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ead865b1e511c24767cf3266419505a5\"", + "ETag": "\"46751557953c694af7fac3add7e23958\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/6f046612537a673010d61b389b9eaf80ef0abe05", + "Location": "https://api.github.com/repos/owner/repo/git/commits/5b7f9d6445de1b5f28ce553249eb985821f14615", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1013,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAF:BBF8:69912B4:7DED60C:5DCBBFD1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1954:2E3F0:301A675:38E8815:5DD1050B" }, - "response": "{\n \"sha\": \"6f046612537a673010d61b389b9eaf80ef0abe05\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDEwMjc1OjZmMDQ2NjEyNTM3YTY3MzAxMGQ2MWIzODliOWVhZjgwZWYwYWJlMDU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6f046612537a673010d61b389b9eaf80ef0abe05\",\n \"html_url\": \"https://github.com/owner/repo/commit/6f046612537a673010d61b389b9eaf80ef0abe05\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:33:21Z\"\n },\n \"tree\": {\n \"sha\": \"15522ba6d70c522c7691f23d17aa48b37fcb88cc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/15522ba6d70c522c7691f23d17aa48b37fcb88cc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a7672b2e36ecb041295c9dc47373521247d5a703\",\n \"html_url\": \"https://github.com/owner/repo/commit/a7672b2e36ecb041295c9dc47373521247d5a703\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjViN2Y5ZDY0NDVkZTFiNWYyOGNlNTUzMjQ5ZWI5ODU4MjFmMTQ2MTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"html_url\": \"https://github.com/owner/repo/commit/5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:03Z\"\n },\n \"tree\": {\n \"sha\": \"c15213f81e6529b9c5506f33d6e3ce4a72df8cfa\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c15213f81e6529b9c5506f33d6e3ce4a72df8cfa\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\",\n \"html_url\": \"https://github.com/owner/repo/commit/a4cb9ae376bc639ee4fe111a478e01ddf5a3934f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"6f046612537a673010d61b389b9eaf80ef0abe05\",\"force\":false}", + "body": "{\"sha\":\"5b7f9d6445de1b5f28ce553249eb985821f14615\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:22 GMT", + "Date": "Sun, 17 Nov 2019 08:30:04 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3899", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d959451769994eda353c530f9573f634\"", + "ETag": "W/\"e2cb30bd0d66d5f3a7979c2fdab9d637\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1045,57 +752,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB4:BBF8:6991395:7DED716:5DCBBFD1", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1959:2E3EC:7B9FD1:942A84:5DD1050C", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDEwMjc1OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6f046612537a673010d61b389b9eaf80ef0abe05\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6f046612537a673010d61b389b9eaf80ef0abe05\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:33:23 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4962", - "X-RateLimit-Reset": "1573637536", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:33:12 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBB:450D6:6AA80A5:7F07D5A:5DCBBFD3", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5b7f9d6445de1b5f28ce553249eb985821f14615\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:23 GMT", + "Date": "Sun, 17 Nov 2019 08:30:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4963", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3898", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1107,27 +780,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBA:450D3:1A9C091:1FE9FCF:5DCBBFD3", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1960:8072:2E4AA5F:36F8253:5DD1050D", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:24 GMT", + "Date": "Sun, 17 Nov 2019 08:30:05 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3897", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:58 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "195E:2E3F0:301AB08:38E8D95:5DD1050D" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:30:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4961", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3896", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0a76feac0f3bf7cde93f8e5ace15adb4\"", + "ETag": "W/\"dc7640009c762bdbfa018a87b8616db3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1139,28 +843,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC0:BBF8:6991631:7DEDA42:5DCBBFD3", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1964:1C98C:23B3FD6:2A3FD12:5DD1050D", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status\"\n}\n", "status": 200 }, { "body": "{\"state\":\"closed\"}", "method": "PATCH", - "url": "/repos/owner/repo/pulls/1?ts=300", + "url": "/repos/owner/repo/pulls/8?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:25 GMT", + "Date": "Sun, 17 Nov 2019 08:30:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4960", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3895", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"395af108afdc1b8b093cfea01f43d92d\"", + "ETag": "W/\"cd77ec7b97d7edfd6d4666549f3f27f0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1172,23 +875,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC1:450E4:8A0DFD5:A475F2D:5DCBBFD4", - "content-length": "21771", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1965:2E3EE:23451B4:29DE034:5DD1050D", + "content-length": "21771" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 340306310,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMzA2MzEw\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:33:14Z\",\n \"updated_at\": \"2019-11-13T08:33:24Z\",\n \"closed_at\": \"2019-11-13T08:33:24Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"9ba3452da7050d6aef1766187b6e38f36c9fc56b\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:32:16Z\",\n \"updated_at\": \"2019-11-13T08:32:47Z\",\n \"pushed_at\": \"2019-11-13T08:33:22Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:32:16Z\",\n \"updated_at\": \"2019-11-13T08:32:47Z\",\n \"pushed_at\": \"2019-11-13T08:33:22Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ad8cfbbdc16b887a711efbc372d2289463280db5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/8\",\n \"id\": 341832084,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMyMDg0\",\n \"html_url\": \"https://github.com/owner/repo/pull/8\",\n \"diff_url\": \"https://github.com/owner/repo/pull/8.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/8.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/8\",\n \"number\": 8,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:30:00Z\",\n \"updated_at\": \"2019-11-17T08:30:06Z\",\n \"closed_at\": \"2019-11-17T08:30:06Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"a115c14559244a91ca23c1e476aed98a62768f53\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/8/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:30:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:30:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/8\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/cd4a88d04f85629662fce10ececb021a81310f12\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:26 GMT", + "Date": "Sun, 17 Nov 2019 08:30:07 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4959", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3894", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1201,27 +903,26 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2FC7:BBF5:3C86F18:48567EC:5DCBBFD5", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196B:1C97B:2B0ACA:33581A:5DD1050E", + "content-length": "0" }, "response": null, "status": 204 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status?ts=300", + "url": "/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:30 GMT", + "Date": "Sun, 17 Nov 2019 08:30:11 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4956", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3891", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0a76feac0f3bf7cde93f8e5ace15adb4\"", + "ETag": "W/\"dc7640009c762bdbfa018a87b8616db3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1233,27 +934,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE5:BBF0:1D07F55:229F3AB:5DCBBFD9", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1989:23E19:141F26C:17CFCB2:5DD10513", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status?ts=300", + "url": "/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:33:35 GMT", + "Date": "Sun, 17 Nov 2019 08:30:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4955", - "X-RateLimit-Reset": "1573637536", + "X-RateLimit-Remaining": "3890", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0a76feac0f3bf7cde93f8e5ace15adb4\"", + "ETag": "W/\"dc7640009c762bdbfa018a87b8616db3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1265,11 +965,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFC:450E4:8A0F203:A477522:5DCBBFDF", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A5:1C98C:23B4EF4:2A40EEE:5DD10519", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221410275,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MTAyNzU=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ad8cfbbdc16b887a711efbc372d2289463280db5/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"cd4a88d04f85629662fce10ececb021a81310f12\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/cd4a88d04f85629662fce10ececb021a81310f12/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json index 1afc36c2..ca0a5e37 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:14 GMT", + "Date": "Sun, 17 Nov 2019 08:25:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4204", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4134", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4880bc2ffd21970e7cfd4dcfdfbd1a52\"", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EDE:2CFED:907C560:AC0324F:5DCBBC09", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "191C:2E3F0:2FFFF1E:38C96C6:5DD103EA", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:14 GMT", + "Date": "Sun, 17 Nov 2019 08:25:15 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4203", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4133", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"73af472ffe6510029ba86cb134817cf1\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"554b6b07a52bf032ca10d20c1a3273af\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,61 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EE6:33B09:69B5411:7E2FF86:5DCBBC0A", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1925:1C98C:23A00BF:2A28641:5DD103EB", + "content-length": "7296" }, - "response": "{\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:44Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4202", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fa55c4c5b0a11b04c546f6d28181ea16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEC:43EF3:3A5FA32:45F17F8:5DCBBC0B", - "content-length": "3484", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:44Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:15 GMT", + "Date": "Sun, 17 Nov 2019 08:25:16 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4201", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4132", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,30 +89,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEB:3A597:8E67399:A947580:5DCBBC0B", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1926:806E:1395DB9:174B48C:5DD103EC", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:16 GMT", - "Content-Type": "text/plain; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:25:16 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4199", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4131", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -156,88 +121,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEF:2CFE8:3EBD2FF:4B46254:5DCBBC0B", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1928:34216:133A115:16CB6AA:5DD103EC", + "content-length": "3484" }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:16 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4200", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EED:43EEE:1DAC3E9:237AD62:5DCBBC0B", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:16 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4198", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF0:BBFA:881CB50:A2D09DF:5DCBBC0B", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:16 GMT", + "Date": "Sun, 17 Nov 2019 08:25:17 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4197", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4130", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -252,24 +152,116 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EEE:43EF6:67985E6:7BAD3E5:5DCBBC0B", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E19:1413E38:17C2851:5DD103EC", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:16 GMT", + "Date": "Sun, 17 Nov 2019 08:25:17 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4196", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4129", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "192D:470CB:2D1A157:356590B:5DD103EC", + "content-length": "2565" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:17 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4128", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "192E:1C993:2D7523E:35EDF7F:5DD103EC", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:17 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4127", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "192F:2E3F0:3000283:38C9ABC:5DD103EC", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:17 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4126", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", @@ -284,9 +276,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2EF1:2CFED:907C908:AC036BA:5DCBBC0B", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1930:2E3EE:23341C2:29C9977:5DD103EC", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 @@ -295,18 +286,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:19 GMT", + "Date": "Sun, 17 Nov 2019 08:25:20 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", + "Content-Length": "464", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4195", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4125", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6c7d0a35a512801207bddfabda8589771bfb64a1\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:37 GMT", + "ETag": "\"2cdadfb6c576a04aa9a252ea533c85889f732cf2\"", + "Last-Modified": "Sun, 17 Nov 2019 08:24:37 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -318,52 +309,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F02:43EF6:6798A11:7BAD917:5DCBBC0F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193D:2E3EE:233458D:29C9DE6:5DD103F0" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"second title\",\"description\":\"second description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4194", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F08:43EEE:1DAC58B:237AF51:5DCBBC0F", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:20 GMT", + "Date": "Sun, 17 Nov 2019 08:25:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4193", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4124", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -375,9 +336,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F07:2CFED:907D068:AC03F7F:5DCBBC0F", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1943:1C993:2D75804:35EE664:5DD103F0", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -386,13 +346,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:21 GMT", + "Date": "Sun, 17 Nov 2019 08:25:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4192", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4123", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -404,9 +364,36 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0A:BBFA:881D362:A2D1382:5DCBBC10", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1942:2E3ED:139E3CF:176A2A6:5DD103F0", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4122", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1949:23E1B:2EA31E3:3744C73:5DD103F1", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -416,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:21 GMT", + "Date": "Sun, 17 Nov 2019 08:25:22 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4191", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4121", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d0a8541ef3440de489e62d15bb05854b\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -439,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F0F:2CFED:907D28E:AC04226:5DCBBC11", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194B:470C9:22B41E4:293B40D:5DD103F1" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -449,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:22 GMT", + "Date": "Sun, 17 Nov 2019 08:25:23 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4190", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4120", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bb3b66329706e70384accb3f20478532\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -470,196 +456,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F15:33B0A:8ABE611:A581C13:5DCBBC12", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1950:470C9:22B42B5:293B4FE:5DD103F2", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:22 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4189", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"121de22197fa5694926268a716f80fab\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F16:43EF3:3A600C5:45F1FAD:5DCBBC12", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4188", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1cd588fc71610502edc9be982660e32e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1A:43EF8:8A381A0:A49CB01:5DCBBC13", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4187", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F1B:43EF6:6798F4C:7BADF8E:5DCBBC13", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:24 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4186", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7d4b0fff22e77dfbf2ad0944a40ae315\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F20:33B09:69B6135:7E30F4C:5DCBBC14", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:25 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4185", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"efe05bca32b2dd06d936a7f74bfcd3a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F25:3A596:65C5891:798F7C2:5DCBBC15", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:26 GMT", + "Date": "Sun, 17 Nov 2019 08:25:23 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4184", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4119", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"15d9853781c1cd716eab166c5311f411\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -672,8 +490,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F2A:3A596:65C59DC:798F964:5DCBBC15", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1951:470C5:885473:A1F66C:5DD103F3" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -683,20 +500,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:27 GMT", + "Date": "Sun, 17 Nov 2019 08:25:24 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4183", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4118", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f93f2d12213969386b86deb8db35a71e\"", + "ETag": "\"1c3c949740b7dd58970e1d22b5dd91ac\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3", + "Location": "https://api.github.com/repos/owner/repo/git/commits/153c21608068de21e3b026130431ed9ff2ffa613", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -706,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F30:2CFE8:3EBDB30:4B46C40:5DCBBC17", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1957:34216:133A5EC:16CBC4A:5DD103F3" }, - "response": "{\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjgwMmNjMzEzMTc1OTI1MWNlZjlhZTg0NmZhNGI0YTIwZGVkMWU1ZDM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"html_url\": \"https://github.com/owner/repo/commit/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:27Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:27Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjE1M2MyMTYwODA2OGRlMjFlM2IwMjYxMzA0MzFlZDlmZjJmZmE2MTM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"html_url\": \"https://github.com/owner/repo/commit/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:24Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:24Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"802cc3131759251cef9ae846fa4b4a20ded1e5d3\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"153c21608068de21e3b026130431ed9ff2ffa613\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:28 GMT", + "Date": "Sun, 17 Nov 2019 08:25:25 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4182", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4117", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"9ec3908006ac13aa8ebf0897d096040c\"", + "ETag": "\"f1fbf0b8c0f67e6c205b006e5d7553d6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -740,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F31:450D6:6A5E7FB:7EAEBCC:5DCBBC17", - "connection": "keep-alive" + "X-GitHub-Request-Id": "195B:806C:890597:A2EB3E:5DD103F4" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/153c21608068de21e3b026130431ed9ff2ffa613\"\n }\n}\n", "status": 201 }, { @@ -751,17 +566,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:30 GMT", + "Date": "Sun, 17 Nov 2019 08:25:26 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4181", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4116", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"6f41811d5a2a18857a118bef6644a2dc\"", + "ETag": "\"6d823a30d472f17b20cae02fd3b306c9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/3", @@ -774,27 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F3A:33B09:69B676C:7E31699:5DCBBC18", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1960:8072:2E31FEB:36DB09E:5DD103F5" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 340300097,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMzAwMDk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:17:29Z\",\n \"updated_at\": \"2019-11-13T08:17:29Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:17:28Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:17:28Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/802cc3131759251cef9ae846fa4b4a20ded1e5d3\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 341831800,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxODAw\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:25:26Z\",\n \"updated_at\": \"2019-11-17T08:25:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:25:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:25:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/153c21608068de21e3b026130431ed9ff2ffa613\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:30 GMT", + "Date": "Sun, 17 Nov 2019 08:25:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4180", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4115", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"63e68732339eb82b6f1122c2ebbd9a17\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"25c9dd44dd26b5505381a53e3eaabdc4\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -807,32 +621,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F41:2CFE8:3EBDD3C:4B46EC3:5DCBBC1A", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1965:2E3EB:24ECA8:2C324B:5DD103F7", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"728900175f0454721e583fd76f85458a081c68fe\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/728900175f0454721e583fd76f85458a081c68fe\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f6fc1937007bfd7bea297cd6049dd1b28e53296e\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI4MDJjYzMxMzE3NTkyNTFjZWY5YWU4NDZmYTRiNGEyMGRlZDFlNWQzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxNTNjMjE2MDgwNjhkZTIxZTNiMDI2MTMwNDMxZWQ5ZmYyZmZhNjEzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:31 GMT", + "Date": "Sun, 17 Nov 2019 08:25:28 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4179", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4114", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"31c319747617f1673e9c6d8d935197de\"", + "ETag": "\"7682a8d8b01fd8c0a0d2be94c1bd3417\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/c5d3d97210584da69440b6fced8493ce555f0469", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/86b216f9667baff129ebd5832ff87e949040d5df", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -842,64 +655,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F46:BBF8:694A2D1:7D96D15:5DCBBC1A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196A:34217:23587AA:2A0056F:5DD103F7" }, - "response": "{\n \"sha\": \"c5d3d97210584da69440b6fced8493ce555f0469\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c5d3d97210584da69440b6fced8493ce555f0469\"\n}\n", + "response": "{\n \"sha\": \"86b216f9667baff129ebd5832ff87e949040d5df\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/86b216f9667baff129ebd5832ff87e949040d5df\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/728900175f0454721e583fd76f85458a081c68fe?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:32 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4178", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b4829a43daeee50f45b225c4c8fc509c\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F47:33B0A:8ABF563:A582E84:5DCBBC1B", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"728900175f0454721e583fd76f85458a081c68fe\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/728900175f0454721e583fd76f85458a081c68fe\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6c7d0a35a512801207bddfabda8589771bfb64a1\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c7d0a35a512801207bddfabda8589771bfb64a1\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"728900175f0454721e583fd76f85458a081c68fe\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"c5d3d97210584da69440b6fced8493ce555f0469\"}]}", + "body": "{\"base_tree\":\"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"86b216f9667baff129ebd5832ff87e949040d5df\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:32 GMT", + "Date": "Sun, 17 Nov 2019 08:25:29 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4177", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4113", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"eae97d69a4e8e90901a29e11c3c6c6ef\"", + "ETag": "\"b910ec111313a64ff93ba153301c897b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/6097b43acb724a04b25b2029a8caddecd5358eaf", + "Location": "https://api.github.com/repos/owner/repo/git/trees/60e850ad9865af8ce934849757c6d8fcfa973e4c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -909,31 +688,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4C:33B09:69B6B2D:7E31B10:5DCBBC1C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196F:23E1B:2EA3C82:37458E7:5DD103F8" }, - "response": "{\n \"sha\": \"6097b43acb724a04b25b2029a8caddecd5358eaf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6097b43acb724a04b25b2029a8caddecd5358eaf\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c5d3d97210584da69440b6fced8493ce555f0469\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c5d3d97210584da69440b6fced8493ce555f0469\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"60e850ad9865af8ce934849757c6d8fcfa973e4c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/60e850ad9865af8ce934849757c6d8fcfa973e4c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"86b216f9667baff129ebd5832ff87e949040d5df\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/86b216f9667baff129ebd5832ff87e949040d5df\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6097b43acb724a04b25b2029a8caddecd5358eaf\",\"parents\":[\"728900175f0454721e583fd76f85458a081c68fe\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"60e850ad9865af8ce934849757c6d8fcfa973e4c\",\"parents\":[\"f6fc1937007bfd7bea297cd6049dd1b28e53296e\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:33 GMT", + "Date": "Sun, 17 Nov 2019 08:25:29 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4176", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4112", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b2d63806ad44e834f48d118a420d8dc6\"", + "ETag": "\"727fbc8b1032a8f9886bdb19aebcf5bc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924", + "Location": "https://api.github.com/repos/owner/repo/git/commits/0c7a05d845436f43cb6e66689571a1577f7088a0", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -943,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4D:450E4:89AD8FF:A401778:5DCBBC1C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1970:23E19:1414472:17C2FBC:5DD103F9" }, - "response": "{\n \"sha\": \"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OmU0OGM3NDhkOTdhNmJiMGIzNWJhNWZlZDU2Y2Y3ZjViNGNiZGE5MjQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"html_url\": \"https://github.com/owner/repo/commit/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:33Z\"\n },\n \"tree\": {\n \"sha\": \"6097b43acb724a04b25b2029a8caddecd5358eaf\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6097b43acb724a04b25b2029a8caddecd5358eaf\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"728900175f0454721e583fd76f85458a081c68fe\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/728900175f0454721e583fd76f85458a081c68fe\",\n \"html_url\": \"https://github.com/owner/repo/commit/728900175f0454721e583fd76f85458a081c68fe\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjBjN2EwNWQ4NDU0MzZmNDNjYjZlNjY2ODk1NzFhMTU3N2Y3MDg4YTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"html_url\": \"https://github.com/owner/repo/commit/0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:29Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:29Z\"\n },\n \"tree\": {\n \"sha\": \"60e850ad9865af8ce934849757c6d8fcfa973e4c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/60e850ad9865af8ce934849757c6d8fcfa973e4c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f6fc1937007bfd7bea297cd6049dd1b28e53296e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\"force\":false}", + "body": "{\"sha\":\"0c7a05d845436f43cb6e66689571a1577f7088a0\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:34 GMT", + "Date": "Sun, 17 Nov 2019 08:25:30 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4175", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4111", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"814f579e3ae12e3f8f7a0a15865e647a\"", + "ETag": "W/\"357a366fa3679ca2eca0dbc5cdcc9505\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -975,57 +752,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F52:3A597:8E6927D:A949A7E:5DCBBC1D", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1977:34215:799764:9194E3:5DD103FA", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:35 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4174", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:17:27 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5C:2CFE4:199EBC3:1EA66EF:5DCBBC1E", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0c7a05d845436f43cb6e66689571a1577f7088a0\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:35 GMT", + "Date": "Sun, 17 Nov 2019 08:25:31 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4173", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4110", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1037,27 +780,58 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5B:450D6:6A5F03C:7EAF5BE:5DCBBC1E", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1981:470C5:88569D:A1F8EF:5DD103FB", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:36 GMT", + "Date": "Sun, 17 Nov 2019 08:25:31 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4109", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:25:24 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1980:2E3F0:30016CB:38CB275:5DD103FB" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:32 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4172", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4108", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8d2a43035e9d874efb960a2786c7368d\"", + "ETag": "W/\"fa96689c1e2f1111f2b3cc5ed32bb8fd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1069,28 +843,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5E:2CFEA:66D1A86:7A962C5:5DCBBC1F", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1984:23E19:14145D1:17C3165:5DD103FC", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:36 GMT", + "Date": "Sun, 17 Nov 2019 08:25:32 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4171", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4107", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e6f24f0d07fe6bb5b830e59ffe6cc9ab\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"1dbc1f889f9af9cb12f0387f2e01246b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1103,27 +876,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F5F:43EF8:8A3975D:A49E4C8:5DCBBC1F", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1985:34215:7997F7:919589:5DD103FC", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/153c21608068de21e3b026130431ed9ff2ffa613\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:37 GMT", + "Date": "Sun, 17 Nov 2019 08:25:34 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4170", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4106", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b95c83a8f531c3cca09719fac18fb634\"", + "ETag": "W/\"5ec48d9c17e01b66dcbce59146d5de5c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1135,29 +907,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F63:450D6:6A5F277:7EAF865:5DCBBC20", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198C:8070:22EC6D4:297A1F8:5DD103FD", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 340300097,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMzAwMDk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:17:29Z\",\n \"updated_at\": \"2019-11-13T08:17:29Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"90f16e6cac17cdb76a6d57c79b92715ecbed7c68\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:17:34Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:17:34Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/802cc3131759251cef9ae846fa4b4a20ded1e5d3\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 341831800,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxODAw\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:25:26Z\",\n \"updated_at\": \"2019-11-17T08:25:26Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"c21ce9f5a8b28fbdde24ee79095845c5de7751ff\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:25:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:25:30Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/153c21608068de21e3b026130431ed9ff2ffa613\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:37 GMT", + "Date": "Sun, 17 Nov 2019 08:25:38 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4169", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4105", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:17:27 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:25:24 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1169,8 +940,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F68:3A597:8E697ED:A94A112:5DCBBC21", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A7:1C993:2D76FB3:35F01CA:5DD10400" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1179,13 +949,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:37 GMT", + "Date": "Sun, 17 Nov 2019 08:25:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4168", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4104", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1197,196 +967,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F69:BBFA:881ECFD:A2D328C:5DCBBC21", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19A8:8072:2E33126:36DC42F:5DD10400", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "url": "/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:38 GMT", + "Date": "Sun, 17 Nov 2019 08:25:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4167", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4103", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"814f579e3ae12e3f8f7a0a15865e647a\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-Poll-Interval": "300", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6E:450D6:6A5F410:7EAFA77:5DCBBC22", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI4MDJjYzMxMzE3NTkyNTFjZWY5YWU4NDZmYTRiNGEyMGRlZDFlNWQzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4166", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"dba3fc022e5fa388e9e62b5bdf835b5b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/ae0f494b40d91aa0461570b0089c95455809447f", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6F:33B0A:8AC009D:A583BCD:5DCBBC22", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ae0f494b40d91aa0461570b0089c95455809447f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ae0f494b40d91aa0461570b0089c95455809447f\"\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4165", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"be7d28ec77f42bbcab66b1274085cfc1\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F74:33B0A:8AC01B0:A583D2C:5DCBBC23", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c5d3d97210584da69440b6fced8493ce555f0469\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c5d3d97210584da69440b6fced8493ce555f0469\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ae0f494b40d91aa0461570b0089c95455809447f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:40 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4164", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f5322200ae066037feee4b67ec9a31a5\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/c432c3c3afaf765dae4ed5a112ff6667ec243097", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F75:43EF8:8A39D93:A49EC40:5DCBBC23", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"c432c3c3afaf765dae4ed5a112ff6667ec243097\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c432c3c3afaf765dae4ed5a112ff6667ec243097\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ae0f494b40d91aa0461570b0089c95455809447f\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ae0f494b40d91aa0461570b0089c95455809447f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c432c3c3afaf765dae4ed5a112ff6667ec243097\",\"parents\":[\"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4163", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3e5631256f31a60951aacb38ed939d29\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/dcb38ac41e980f65303051bdb6bf22f3695419a9", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7A:450E4:89AE5D2:A40269B:5DCBBC24", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"dcb38ac41e980f65303051bdb6bf22f3695419a9\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OmRjYjM4YWM0MWU5ODBmNjUzMDMwNTFiZGI2YmYyMmYzNjk1NDE5YTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dcb38ac41e980f65303051bdb6bf22f3695419a9\",\n \"html_url\": \"https://github.com/owner/repo/commit/dcb38ac41e980f65303051bdb6bf22f3695419a9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:40Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:17:40Z\"\n },\n \"tree\": {\n \"sha\": \"c432c3c3afaf765dae4ed5a112ff6667ec243097\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c432c3c3afaf765dae4ed5a112ff6667ec243097\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\",\n \"html_url\": \"https://github.com/owner/repo/commit/e48c748d97a6bb0b35ba5fed56cf7f5b4cbda924\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:41 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4162", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8d2a43035e9d874efb960a2786c7368d\"", + "ETag": "W/\"fa96689c1e2f1111f2b3cc5ed32bb8fd\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1398,28 +998,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7F:450D6:6A5F818:7EAFF45:5DCBBC25", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AF:8070:22ECB40:297A74C:5DD10402", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status\"\n}\n", "status": 200 }, { - "body": "{\"sha\":\"dcb38ac41e980f65303051bdb6bf22f3695419a9\",\"force\":false}", - "method": "PATCH", + "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:42 GMT", + "Date": "Sun, 17 Nov 2019 08:25:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4161", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4102", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2fab9f25f139867f0da057dce7bd33cd\"", + "ETag": "W/\"357a366fa3679ca2eca0dbc5cdcc9505\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", + "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1431,28 +1031,189 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F80:43EF8:8A39FF9:A49EF1D:5DCBBC25", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1B:2EA4E41:3746CD6:5DD10404", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"dcb38ac41e980f65303051bdb6bf22f3695419a9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dcb38ac41e980f65303051bdb6bf22f3695419a9\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0c7a05d845436f43cb6e66689571a1577f7088a0\"\n }\n}\n", "status": 200 }, { - "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\"merge_method\":\"merge\"}", - "method": "PUT", - "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxNTNjMjE2MDgwNjhkZTIxZTNiMDI2MTMwNDMxZWQ5ZmYyZmZhNjEzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:44 GMT", + "Date": "Sun, 17 Nov 2019 08:25:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4101", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8774736e3c9909500334326d62544418\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/722009167bdca0ab4649e7b79fda9e4c19670f65", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19B6:470C7:14E0EC2:189E719:5DD10406" + }, + "response": "{\n \"sha\": \"722009167bdca0ab4649e7b79fda9e4c19670f65\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/722009167bdca0ab4649e7b79fda9e4c19670f65\"\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0c7a05d845436f43cb6e66689571a1577f7088a0\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"722009167bdca0ab4649e7b79fda9e4c19670f65\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4100", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"757e5a26c63946f1fb24a75eca167483\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/d8bb423676a178edf0c05d221c2b7405a0418987", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C3:2E3ED:139F1D8:176B2F6:5DD10409" + }, + "response": "{\n \"sha\": \"d8bb423676a178edf0c05d221c2b7405a0418987\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d8bb423676a178edf0c05d221c2b7405a0418987\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"722009167bdca0ab4649e7b79fda9e4c19670f65\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/722009167bdca0ab4649e7b79fda9e4c19670f65\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d8bb423676a178edf0c05d221c2b7405a0418987\",\"parents\":[\"0c7a05d845436f43cb6e66689571a1577f7088a0\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4099", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7e5c66eba9b0678648035010f2a0f547\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/87c75d755bc91b74ec351d37fc954d98a069e22b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19CF:23E18:75318B:8C3927:5DD1040B" + }, + "response": "{\n \"sha\": \"87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3Ojg3Yzc1ZDc1NWJjOTFiNzRlYzM1MWQzN2ZjOTU0ZDk4YTA2OWUyMmI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"html_url\": \"https://github.com/owner/repo/commit/87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:48Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:25:48Z\"\n },\n \"tree\": {\n \"sha\": \"d8bb423676a178edf0c05d221c2b7405a0418987\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d8bb423676a178edf0c05d221c2b7405a0418987\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0c7a05d845436f43cb6e66689571a1577f7088a0\",\n \"html_url\": \"https://github.com/owner/repo/commit/0c7a05d845436f43cb6e66689571a1577f7088a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:49 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4160", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4098", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"657649b103bd74f42c45486bb3b647ad\"", + "ETag": "W/\"fa96689c1e2f1111f2b3cc5ed32bb8fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C9:8070:22ED4DC:297B292:5DD1040B", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"153c21608068de21e3b026130431ed9ff2ffa613\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/153c21608068de21e3b026130431ed9ff2ffa613/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"87c75d755bc91b74ec351d37fc954d98a069e22b\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4097", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a2ff110c148f5eb1defef3e25360b6db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19D9:2E3EE:2336477:29CC1A8:5DD1040D", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"87c75d755bc91b74ec351d37fc954d98a069e22b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/87c75d755bc91b74ec351d37fc954d98a069e22b\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"153c21608068de21e3b026130431ed9ff2ffa613\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:25:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4096", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5e6a9cc41b3b28ddce350edfe7459171\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1464,23 +1225,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F85:43EF8:8A3A239:A49F1E6:5DCBBC26", - "content-length": "123", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E9:470CB:2D1CCE7:3568CC4:5DD10411", + "content-length": "123" }, - "response": "{\n \"sha\": \"5c0e04630dc34a7fec02cf6c8f3fda2b5f0b9de7\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "response": "{\n \"sha\": \"c7eab4db35325c3a267cbe2ce43af608a8e9d121\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", "status": 200 }, { "method": "DELETE", "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:45 GMT", + "Date": "Sun, 17 Nov 2019 08:25:57 GMT", "Server": "GitHub.com", "Status": "204 No Content", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4159", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4095", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1493,9 +1253,8 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding", - "X-GitHub-Request-Id": "2F8E:2CFEA:66D2686:7A97137:5DCBBC28", - "content-length": "0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19F6:23E19:14152A2:17C4084:5DD10413", + "content-length": "0" }, "response": null, "status": 204 @@ -1504,18 +1263,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:17:46 GMT", + "Date": "Sun, 17 Nov 2019 08:25:59 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4157", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4093", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:17:43 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:25:53 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1527,42 +1286,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F93:450D6:6A5FDA6:7EB05EB:5DCBBC29", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1802:470C5:885E3A:A2019F:5DD10416" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:17:47 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4155", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"8d2a43035e9d874efb960a2786c7368d\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F9A:450D6:6A5FE8E:7EB06F6:5DCBBC2A", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/802cc3131759251cef9ae846fa4b4a20ded1e5d3/status\"\n}\n", - "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json index 43bee890..b4a42658 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:59 GMT", + "Date": "Sun, 17 Nov 2019 08:23:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4282", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4200", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4880bc2ffd21970e7cfd4dcfdfbd1a52\"", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F45:3A597:8E5F52B:A93DC9B:5DCBBBBE", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1905:470CB:2D1356D:355D7DB:5DD10395", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:15:59 GMT", + "Date": "Sun, 17 Nov 2019 08:23:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4281", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4199", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9bcfc51a69262302750420300ab4cd16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"34dd3ac717e6794d4b65c03c761f001f\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F49:450E4:89A3D0B:A3F5C67:5DCBBBBF", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190D:2E3F0:2FF8182:38C02FD:5DD10396", + "content-length": "7296" }, - "response": "{\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:15:29Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:23:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:00 GMT", + "Date": "Sun, 17 Nov 2019 08:23:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4280", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4198", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,9 +89,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4E:43EF6:67929C9:7BA6470:5DCBBBC0", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "190E:2E3EE:232E83C:29C2FA4:5DD10397", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -102,17 +99,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:00 GMT", + "Date": "Sun, 17 Nov 2019 08:23:51 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4279", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4197", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fa55c4c5b0a11b04c546f6d28181ea16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,152 +121,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F4F:43EF8:8A2FA24:A4927A9:5DCBBBC0", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1913:1C993:2D6DB80:35E5342:5DD10397", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:01 GMT", - "Content-Type": "text/plain; charset=iso-8859-1", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4278", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F54:BBF8:6943D5C:7D8F0BA:5DCBBBC0", - "content-length": "1707", - "connection": "keep-alive" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:01 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4277", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F58:3A595:3E0CBF2:4A2E318:5DCBBBC0", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:01 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4276", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F55:450E4:89A3EF5:A3F5ED3:5DCBBBC0", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:01 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4275", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F57:450E4:89A3EF5:A3F5ED4:5DCBBBC0", - "content-length": "16071", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:01 GMT", + "Date": "Sun, 17 Nov 2019 08:23:52 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4274", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4196", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", @@ -284,29 +152,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F56:450D3:1A812C0:1FC9CEF:5DCBBBC0", - "content-length": "2786", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1916:2E3ED:139AB04:1765FCF:5DD10397", + "content-length": "2786" }, "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:04 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", + "Date": "Sun, 17 Nov 2019 08:23:52 GMT", + "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4273", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4194", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1bfd6b63e6be4113def169964426911a260c6545\"", - "Last-Modified": "Wed, 13 Nov 2019 08:15:23 GMT", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -318,23 +183,148 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F66:450E4:89A45AA:A3F66E5:5DCBBBC4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1915:2E3F0:2FF8330:38C04F3:5DD10397", + "content-length": "2565" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"adf197b5bd77593ee8bb73de8caba379857ef24c\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:52 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4193", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1914:34218:2F532E3:3811AE8:5DD10397", + "content-length": "1707" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:52 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4195", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1918:2E3EE:232E8C5:29C3050:5DD10397", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:52 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4192", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1917:34218:2F532E4:3811AE9:5DD10397", + "content-length": "16071" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Sun, 17 Nov 2019 08:23:55 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4191", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5676560a166d66b5ebd80687921be6b8ccdbe4a0\"", + "Last-Modified": "Sun, 17 Nov 2019 08:23:16 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1928:34218:2F5362F:3811F03:5DD1039B" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"14efc49b158067a83b33ca0707ec1a10fcdb7c09\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:05 GMT", + "Date": "Sun, 17 Nov 2019 08:23:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4272", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4190", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -346,9 +336,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6C:3A596:65BF0CA:7987B7A:5DCBBBC4", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192C:23E19:1410A13:17BEAF2:5DD1039B", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -357,13 +346,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:05 GMT", + "Date": "Sun, 17 Nov 2019 08:23:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4271", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4189", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -375,9 +364,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6B:33B08:3EF0C49:4B1A13C:5DCBBBC4", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192D:470C5:883A36:A1D7E6:5DD1039B", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -386,13 +374,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:05 GMT", + "Date": "Sun, 17 Nov 2019 08:23:56 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4270", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4188", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -404,9 +392,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F6F:33B0A:8AB6904:A5785B4:5DCBBBC5", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192E:1C993:2D6E1DC:35E5AD1:5DD1039C", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -416,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:06 GMT", + "Date": "Sun, 17 Nov 2019 08:23:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4269", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4187", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d0a8541ef3440de489e62d15bb05854b\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -439,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F73:3A597:8E60351:A93EDA7:5DCBBBC6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1933:34217:2352269:29F8DED:5DD1039C" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -449,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:07 GMT", + "Date": "Sun, 17 Nov 2019 08:23:57 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4268", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4186", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bb3b66329706e70384accb3f20478532\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -470,196 +456,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F78:450D5:3AFC3D6:469DBB6:5DCBBBC7", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470CB:2D13E00:355E210:5DD1039D", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4267", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"121de22197fa5694926268a716f80fab\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7E:BBF8:69446D5:7D8FC4D:5DCBBBC7", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:08 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4266", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1cd588fc71610502edc9be982660e32e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7F:450D5:3AFC501:469DD21:5DCBBBC8", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4265", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F83:2CFE8:3EB9B16:4B41EEA:5DCBBBC8", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:09 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4264", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7d4b0fff22e77dfbf2ad0944a40ae315\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F84:2CFE8:3EB9B87:4B41F7A:5DCBBBC9", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:10 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4263", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"efe05bca32b2dd06d936a7f74bfcd3a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F89:BBF5:3C546FF:4819744:5DCBBBCA", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:11 GMT", + "Date": "Sun, 17 Nov 2019 08:23:58 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4262", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4185", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"15d9853781c1cd716eab166c5311f411\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", @@ -672,8 +490,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8E:2CFEA:66CA5EB:7A8D85B:5DCBBBCA", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1939:1C981:8D865E:A78E52:5DD1039E" }, "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 @@ -683,20 +500,20 @@ "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:12 GMT", + "Date": "Sun, 17 Nov 2019 08:23:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4261", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4184", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"06668654a6c890b2691f4f2696f51448\"", + "ETag": "\"c6c80ca0373ee41159df98d368f516d3\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da", + "Location": "https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -706,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F93:450D2:880442:A31E1A:5DCBBBCB", - "connection": "keep-alive" + "X-GitHub-Request-Id": "193F:2E3F0:2FF8B76:38C0EB5:5DD1039E" }, - "response": "{\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjI3NzYxYzRhYzc3N2I0NDc2NDU5NTU2MzU5MDllZGM5OWFkY2M0ZGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"html_url\": \"https://github.com/owner/repo/commit/27761c4ac777b447645955635909edc99adcc4da\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjU0NGJiNGU0MDZjMDA4M2I3NzQyZWEwMDc2NzJhODEyMmY2MGUxYTQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"27761c4ac777b447645955635909edc99adcc4da\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"544bb4e406c0083b7742ea007672a8122f60e1a4\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:13 GMT", + "Date": "Sun, 17 Nov 2019 08:24:00 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4260", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4183", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"f65597280806db15a313054076f74c4a\"", + "ETag": "\"7c26a7e18eac12a0b8cd8639aceb6be6\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -740,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F94:3A597:8E60E38:A93FADC:5DCBBBCC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1943:1C985:1357151:16FDABD:5DD1039F" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\"\n }\n}\n", "status": 201 }, { @@ -751,17 +566,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:14 GMT", + "Date": "Sun, 17 Nov 2019 08:24:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4259", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4182", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8ecb76071218e05998c22c5d8372153b\"", + "ETag": "\"242a906d02a4cdef98eb1bb418c6e72f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/2", @@ -774,27 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F99:3A596:65BFC7D:798898C:5DCBBBCD", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1948:2E3EE:232F0A1:29C39CC:5DD103A0" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340299613,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk5NjEz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:16:14Z\",\n \"updated_at\": \"2019-11-13T08:16:14Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/27761c4ac777b447645955635909edc99adcc4da\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/27761c4ac777b447645955635909edc99adcc4da\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341831701,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxNzAx\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:24:01Z\",\n \"updated_at\": \"2019-11-17T08:24:01Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/544bb4e406c0083b7742ea007672a8122f60e1a4\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:15 GMT", + "Date": "Sun, 17 Nov 2019 08:24:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4258", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4181", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"84690ee7e7459d62a02fa2b89dade28c\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"7483f189e94f4745744893e7254a650f\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -807,32 +621,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA2:3A596:65BFE8A:7988C08:5DCBBBCF", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1952:34217:2352E1A:29F9818:5DD103A2", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ee98c01fbc6f81346ca057fc28114f52af23113\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/372bcb0f8878b3032eabea8682713ca80b5e87e1\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiIyNzc2MWM0YWM3NzdiNDQ3NjQ1OTU1NjM1OTA5ZWRjOTlhZGNjNGRhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI1NDRiYjRlNDA2YzAwODNiNzc0MmVhMDA3NjcyYTgxMjJmNjBlMWE0In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:16 GMT", + "Date": "Sun, 17 Nov 2019 08:24:08 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4257", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4180", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"159ef49c89d066211bc6c948dd75c9a0\"", + "ETag": "\"78622c5b56000199da5de53116fda620\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/5de161d326c7e7378d006fe0aecf47743a883cae", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/1b42c084fcd25c986c42067e41e4e5a29c0d664e", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -842,64 +655,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA8:450D6:6A586D0:7EA77FA:5DCBBBCF", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1964:1C98C:239B731:2A22F09:5DD103A7" }, - "response": "{\n \"sha\": \"5de161d326c7e7378d006fe0aecf47743a883cae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5de161d326c7e7378d006fe0aecf47743a883cae\"\n}\n", + "response": "{\n \"sha\": \"1b42c084fcd25c986c42067e41e4e5a29c0d664e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1b42c084fcd25c986c42067e41e4e5a29c0d664e\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/7ee98c01fbc6f81346ca057fc28114f52af23113?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:16 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4256", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"319e5c895f4acfd8508bf4b58f9058b4\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FA9:43EF8:8A314BC:A49481A:5DCBBBD0", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1bfd6b63e6be4113def169964426911a260c6545\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1bfd6b63e6be4113def169964426911a260c6545\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"7ee98c01fbc6f81346ca057fc28114f52af23113\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5de161d326c7e7378d006fe0aecf47743a883cae\"}]}", + "body": "{\"base_tree\":\"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1b42c084fcd25c986c42067e41e4e5a29c0d664e\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:17 GMT", + "Date": "Sun, 17 Nov 2019 08:24:11 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "895", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4255", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4179", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4d6cd5092e968fb0110838c233d97d89\"", + "ETag": "\"23a0d042cbf430e20ef4c149b9c5a116\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/3d636ec22f193cb44746919e77ed095cc7ca53a5", + "Location": "https://api.github.com/repos/owner/repo/git/trees/d83f2f5736685e86d20dbe29ae4f803a661034bb", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -909,31 +688,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAE:43EF3:3A5C63A:45EDA87:5DCBBBD1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "196C:2E3EE:232FDA3:29C4825:5DD103AA" }, - "response": "{\n \"sha\": \"3d636ec22f193cb44746919e77ed095cc7ca53a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3d636ec22f193cb44746919e77ed095cc7ca53a5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5de161d326c7e7378d006fe0aecf47743a883cae\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5de161d326c7e7378d006fe0aecf47743a883cae\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"d83f2f5736685e86d20dbe29ae4f803a661034bb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d83f2f5736685e86d20dbe29ae4f803a661034bb\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1b42c084fcd25c986c42067e41e4e5a29c0d664e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1b42c084fcd25c986c42067e41e4e5a29c0d664e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3d636ec22f193cb44746919e77ed095cc7ca53a5\",\"parents\":[\"7ee98c01fbc6f81346ca057fc28114f52af23113\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d83f2f5736685e86d20dbe29ae4f803a661034bb\",\"parents\":[\"372bcb0f8878b3032eabea8682713ca80b5e87e1\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:18 GMT", + "Date": "Sun, 17 Nov 2019 08:24:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4254", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4178", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"1a900d02aa40f83886f1355d4f600005\"", + "ETag": "\"e7f433c0035927e010666b773304c2ad\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/694709d0794f207ca69d431ba211d2fd646185ca", + "Location": "https://api.github.com/repos/owner/repo/git/commits/5628277acd38fcae7dd66dc025a74f1b8fa964a7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -943,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FAF:BBFA:8816FCA:A2C9AAD:5DCBBBD1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "197A:23E1B:2E9CE17:373D663:5DD103AC" }, - "response": "{\n \"sha\": \"694709d0794f207ca69d431ba211d2fd646185ca\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjY5NDcwOWQwNzk0ZjIwN2NhNjlkNDMxYmEyMTFkMmZkNjQ2MTg1Y2E=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/694709d0794f207ca69d431ba211d2fd646185ca\",\n \"html_url\": \"https://github.com/owner/repo/commit/694709d0794f207ca69d431ba211d2fd646185ca\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:18Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:18Z\"\n },\n \"tree\": {\n \"sha\": \"3d636ec22f193cb44746919e77ed095cc7ca53a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3d636ec22f193cb44746919e77ed095cc7ca53a5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ee98c01fbc6f81346ca057fc28114f52af23113\",\n \"html_url\": \"https://github.com/owner/repo/commit/7ee98c01fbc6f81346ca057fc28114f52af23113\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjU2MjgyNzdhY2QzOGZjYWU3ZGQ2NmRjMDI1YTc0ZjFiOGZhOTY0YTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:14Z\"\n },\n \"tree\": {\n \"sha\": \"d83f2f5736685e86d20dbe29ae4f803a661034bb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d83f2f5736685e86d20dbe29ae4f803a661034bb\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/372bcb0f8878b3032eabea8682713ca80b5e87e1\",\n \"html_url\": \"https://github.com/owner/repo/commit/372bcb0f8878b3032eabea8682713ca80b5e87e1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"694709d0794f207ca69d431ba211d2fd646185ca\",\"force\":false}", + "body": "{\"sha\":\"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:19 GMT", + "Date": "Sun, 17 Nov 2019 08:24:17 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4253", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4177", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f3ebaa4165a89dd50ecd5aa4320e29c9\"", + "ETag": "W/\"aa31ab5ddec2e367caa797865ccaad88\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -975,58 +752,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FB8:43EF6:67942B2:7BA827D:5DCBBBD2", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "198E:1C98C:239BFFF:2A239C8:5DD103AF", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"694709d0794f207ca69d431ba211d2fd646185ca\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/694709d0794f207ca69d431ba211d2fd646185ca\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5628277acd38fcae7dd66dc025a74f1b8fa964a7\"\n }\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:20 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4252", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBE:450E4:89A5F79:A3F862C:5DCBBBD4", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:20 GMT", + "Date": "Sun, 17 Nov 2019 08:24:19 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4251", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4176", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:12 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:23:59 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1038,26 +785,53 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FBD:33B0A:8AB826C:A57A454:5DCBBBD4", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19AB:1C993:2D70504:35E8315:5DD103B2" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=300", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:21 GMT", + "Date": "Sun, 17 Nov 2019 08:24:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4175", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19A8:8072:2E2CAF8:36D498F:5DD103B2", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4250", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4174", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1069,28 +843,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC8:43EF8:8A31B30:A495014:5DCBBBD4", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B2:23E1A:21E2E0B:283BA9A:5DD103B4", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:21 GMT", + "Date": "Sun, 17 Nov 2019 08:24:21 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4249", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4173", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"503f64c0673c8cdf06839cef54b80f1e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"5481febeb4f68eae39a1daa890b59db3\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1103,27 +876,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FC9:450D5:3AFCD8B:469E7CD:5DCBBBD5", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B3:470C5:884293:A1E18B:5DD103B4", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:22 GMT", + "Date": "Sun, 17 Nov 2019 08:24:23 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4248", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4172", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f3e0e477ea2788f64aab9790d39d1b8c\"", + "ETag": "W/\"3c4eca7b5f85d2d38798e1ac08035511\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1135,24 +907,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCA:2CFEA:66CB516:7A8EA80:5DCBBBD5", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19B7:470CB:2D1614C:3560B1F:5DD103B6", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340299613,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk5NjEz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:16:14Z\",\n \"updated_at\": \"2019-11-13T08:16:14Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"1e422a1a9990f1617da6001f1c5f7ae73213e2af\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/27761c4ac777b447645955635909edc99adcc4da\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:19Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:19Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/27761c4ac777b447645955635909edc99adcc4da\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341831701,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxNzAx\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:24:01Z\",\n \"updated_at\": \"2019-11-17T08:24:01Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"528dd0cf079fdf191f450ae7250857468a0b6a21\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:16Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:16Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/544bb4e406c0083b7742ea007672a8122f60e1a4\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:22 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:24:25 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", "Server": "GitHub.com", - "Status": "404 Not Found", + "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4247", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4171", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Sun, 17 Nov 2019 08:23:59 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1164,9 +940,63 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCE:33B0A:8AB866E:A57A92A:5DCBBBD6", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19C6:23E1B:2E9DE27:373E985:5DD103B8" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4170", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19C4:470C9:22B07A5:2936E17:5DD103B8", + "content-length": "116" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4169", + "X-RateLimit-Reset": "1573980038", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "19CF:23E1B:2E9E130:373ED21:5DD103BA", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -1175,18 +1005,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:22 GMT", + "Date": "Sun, 17 Nov 2019 08:24:27 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4246", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4168", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:12 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:23:59 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1198,26 +1028,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FCD:33B08:3EF1AB0:4B1B287:5DCBBBD6", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CC:2E3EE:2330E35:29C5BF3:5DD103BA" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=300", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:23 GMT", + "Date": "Sun, 17 Nov 2019 08:24:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4245", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4167", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1229,89 +1058,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD1:33B09:69B0F8E:7E2ADC2:5DCBBBD7", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19CE:8070:22E8884:29756EB:5DD103BA", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:23 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "404 Not Found", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4244", - "X-RateLimit-Reset": "1573635105", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD5:BBFA:88177FE:A2CA4B0:5DCBBBD7", - "content-length": "116", - "connection": "keep-alive" - }, - "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", - "status": 404 - }, - { - "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:23 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "167", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4243", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:12 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD3:2CFED:9076BB7:ABFC726:5DCBBBD7", - "connection": "keep-alive" - }, - "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=300", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:24 GMT", + "Date": "Sun, 17 Nov 2019 08:24:29 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4242", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4166", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1323,27 +1089,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FD7:33B09:69B1088:7E2AEE6:5DCBBBD7", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19D9:2E3EE:2330FFC:29C5E1E:5DD103BC", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=300", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=300", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:26 GMT", + "Date": "Sun, 17 Nov 2019 08:24:31 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4241", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4165", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1355,11 +1120,10 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FE2:2CFED:90771B3:ABFCE34:5DCBBBDA", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "19E9:470C9:22B0DB6:293754A:5DD103BE", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", "status": 200 }, { @@ -1367,17 +1131,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:28 GMT", + "Date": "Sun, 17 Nov 2019 08:24:32 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4240", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4164", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c19f3f19b9af6a157f717f09b155c001\"", + "ETag": "\"758290bacb755af5d4b426313c107621\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", @@ -1390,8 +1154,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEB:3A594:1BBDB82:214B6C6:5DCBBBDC", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181D:34217:23549D8:29FBC42:5DD103BF" }, "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", "status": 201 @@ -1400,16 +1163,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:29 GMT", + "Date": "Sun, 17 Nov 2019 08:24:32 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4239", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4163", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ae87c9e0aa8ba6e1c990c46c0249dccd\"", + "ETag": "W/\"38db4eb67f627426f2daa57768fee1a5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1421,27 +1184,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FED:2CFED:907759E:ABFD2E8:5DCBBBDC", - "content-length": "4815", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182C:34218:2F566AD:38158F9:5DD103C0", + "content-length": "4815" }, - "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjI3NzYxYzRhYzc3N2I0NDc2NDU5NTU2MzU5MDllZGM5OWFkY2M0ZGE=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"html_url\": \"https://github.com/owner/repo/commit/27761c4ac777b447645955635909edc99adcc4da\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjU0NGJiNGU0MDZjMDA4M2I3NzQyZWEwMDc2NzJhODEyMmY2MGUxYTQ=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=600", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:29 GMT", + "Date": "Sun, 17 Nov 2019 08:24:33 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4238", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4162", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1453,260 +1215,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FEC:450D5:3AFD235:469ED9D:5DCBBBDC", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1831:34218:2F56707:3815972:5DD103C0", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/27761c4ac777b447645955635909edc99adcc4da?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4237", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"2afaa9c11b31b850f6027132ff8d38b2\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF2:450E4:89A6DB1:A3F9734:5DCBBBDD", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/27761c4ac777b447645955635909edc99adcc4da\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:29 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4236", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF3:3A595:3E0E782:4A3039A:5DCBBBDD", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:30 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4235", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"efe05bca32b2dd06d936a7f74bfcd3a8\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF4:33B08:3EF2079:4B1B96B:5DCBBBDD", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:30 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4234", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7d4b0fff22e77dfbf2ad0944a40ae315\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FF9:2CFEA:66CC13A:7A8F8CB:5DCBBBDE", - "content-length": "2362", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "body": "{\"base_tree\":\"544bb4e406c0083b7742ea007672a8122f60e1a4\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4233", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b9350fc0a310c3984957743082a792fd\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFA:33B0A:8AB937C:A57B902:5DCBBBDE", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:31 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4232", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e9e2b390cab6c2234c622bc116a73556\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2FFF:43EF8:8A32C27:A4964C3:5DCBBBDF", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:32 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4231", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E04:450D6:6A59D2D:7EA9286:5DCBBBDF", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"27761c4ac777b447645955635909edc99adcc4da\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:32 GMT", + "Date": "Sun, 17 Nov 2019 08:24:33 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4230", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4161", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"b0af28406ee6e2a472008ab9163e5357\"", + "ETag": "\"c31664337112d5ae27e03a24aaa7086e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1", @@ -1719,31 +1249,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E05:43EF8:8A32D48:A496613:5DCBBBE0", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1835:470C9:22B0FB9:293782D:5DD103C1" }, "response": "{\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"27761c4ac777b447645955635909edc99adcc4da\"]}", + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\"parents\":[\"544bb4e406c0083b7742ea007672a8122f60e1a4\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:33 GMT", + "Date": "Sun, 17 Nov 2019 08:24:34 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4229", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4160", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ba2c6a8fde6b8173e54c066e9eeb9d9a\"", + "ETag": "\"3a1607f9533a23c50bd24d42ebd49013\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1753,26 +1282,56 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E0B:2CFEA:66CC527:7A8FD80:5DCBBBE1", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1841:1C985:13584A0:16FF193:5DD103C2" }, - "response": "{\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OmIzMGJkYTllZDRjOGRmMzgwZTViZjcwNjQzMGViNDhmZjFlNzIxNGU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"html_url\": \"https://github.com/owner/repo/commit/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:33Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"html_url\": \"https://github.com/owner/repo/commit/27761c4ac777b447645955635909edc99adcc4da\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjNmNThjMjFmYzBhYjJmOTI1NDNkMmFkZjE1YmU0Y2YzNmVjOWJmNzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"html_url\": \"https://github.com/owner/repo/commit/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:34Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:34Z\"\n },\n \"tree\": {\n \"sha\": \"adf6bf518756b1f1fe4c14ae229da60e6b620aa1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/adf6bf518756b1f1fe4c14ae229da60e6b620aa1\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/544bb4e406c0083b7742ea007672a8122f60e1a4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4159", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1848:23E1B:2E9EB14:373F937:5DD103C2", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", + "status": 200 + }, { "method": "GET", "url": "/repos/owner/repo/branches/master?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:34 GMT", + "Date": "Sun, 17 Nov 2019 08:24:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4228", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4158", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"bb3b66329706e70384accb3f20478532\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1784,28 +1343,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E10:BBF0:1CF0931:2282BFC:5DCBBBE1", - "content-length": "5379", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1849:2E3F0:2FFC20A:38C4E85:5DD103C2", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls/2/commits?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:34 GMT", + "Date": "Sun, 17 Nov 2019 08:24:35 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4227", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4157", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f418c30e3f0f491b48fe61590db3895f\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:14 GMT", + "ETag": "W/\"07bdbe841677aec7e99439090e163d6a\"", + "Last-Modified": "Sun, 17 Nov 2019 08:24:01 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1817,60 +1375,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E11:33B09:69B1DD0:7E2BEDA:5DCBBBE1", - "content-length": "4157", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184A:2E3ED:139C722:17680B2:5DD103C2", + "content-length": "4157" }, - "response": "[\n {\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjI3NzYxYzRhYzc3N2I0NDc2NDU5NTU2MzU5MDllZGM5OWFkY2M0ZGE=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:12Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"html_url\": \"https://github.com/owner/repo/commit/27761c4ac777b447645955635909edc99adcc4da\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:34 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4226", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E12:3A597:8E62FF8:A9423ED:5DCBBBE2", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", + "response": "[\n {\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjU0NGJiNGU0MDZjMDA4M2I3NzQyZWEwMDc2NzJhODEyMmY2MGUxYTQ=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:23:59Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"html_url\": \"https://github.com/owner/repo/commit/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ]\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:34 GMT", + "Date": "Sun, 17 Nov 2019 08:24:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4225", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4156", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f3ebaa4165a89dd50ecd5aa4320e29c9\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"aa31ab5ddec2e367caa797865ccaad88\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1883,64 +1408,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E13:3A596:65C1638:798A8A1:5DCBBBE2", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184F:2E3EE:233162D:29C65BC:5DD103C3", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"694709d0794f207ca69d431ba211d2fd646185ca\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/694709d0794f207ca69d431ba211d2fd646185ca\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5628277acd38fcae7dd66dc025a74f1b8fa964a7\"\n }\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:35 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4224", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"dea9414bba2651fa2f4b125582fc7dda\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E17:450D5:3AFD66B:469F2D5:5DCBBBE2", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"27761c4ac777b447645955635909edc99adcc4da\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/27761c4ac777b447645955635909edc99adcc4da/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJiMzBiZGE5ZWQ0YzhkZjM4MGU1YmY3MDY0MzBlYjQ4ZmYxZTcyMTRlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiIzZjU4YzIxZmMwYWIyZjkyNTQzZDJhZGYxNWJlNGNmMzZlYzliZjcxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiIzZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3In0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:35 GMT", + "Date": "Sun, 17 Nov 2019 08:24:36 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4223", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4155", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"edfda93859cc8e3cc88743bedd335eb1\"", + "ETag": "\"bb82675b2f84d625dbb456e9f338d61e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/6c7d0a35a512801207bddfabda8589771bfb64a1", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/2cdadfb6c576a04aa9a252ea533c85889f732cf2", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1950,193 +1442,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E18:450E4:89A7737:A3FA2B8:5DCBBBE3", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1850:23E19:1412569:17C0A94:5DD103C4" }, - "response": "{\n \"sha\": \"6c7d0a35a512801207bddfabda8589771bfb64a1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c7d0a35a512801207bddfabda8589771bfb64a1\"\n}\n", + "response": "{\n \"sha\": \"2cdadfb6c576a04aa9a252ea533c85889f732cf2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2cdadfb6c576a04aa9a252ea533c85889f732cf2\"\n}\n", "status": 201 }, { "method": "GET", - "url": "/repos/owner/repo/git/trees/694709d0794f207ca69d431ba211d2fd646185ca?ts=600", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:36 GMT", + "Date": "Sun, 17 Nov 2019 08:24:36 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4222", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4154", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4643f0ff5b64519a7cd0f8d0f2b0e38e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E19:2CFE8:3EBB1B5:4B43A63:5DCBBBE3", - "content-length": "895", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"694709d0794f207ca69d431ba211d2fd646185ca\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/694709d0794f207ca69d431ba211d2fd646185ca\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5de161d326c7e7378d006fe0aecf47743a883cae\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5de161d326c7e7378d006fe0aecf47743a883cae\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"694709d0794f207ca69d431ba211d2fd646185ca\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6c7d0a35a512801207bddfabda8589771bfb64a1\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:36 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "895", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4221", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8dc891f25946479af6a2a9ebadce42a6\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/61e4bdbed4d5ae985c9faa925fff5e66e4822fa2", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E1F:3A595:3E0ED12:4A30A59:5DCBBBE4", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"61e4bdbed4d5ae985c9faa925fff5e66e4822fa2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/61e4bdbed4d5ae985c9faa925fff5e66e4822fa2\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6c7d0a35a512801207bddfabda8589771bfb64a1\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6c7d0a35a512801207bddfabda8589771bfb64a1\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"61e4bdbed4d5ae985c9faa925fff5e66e4822fa2\",\"parents\":[\"694709d0794f207ca69d431ba211d2fd646185ca\"]}", - "method": "POST", - "url": "/repos/owner/repo/git/commits?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:37 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "1510", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4220", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"4c652d77e301b5ccae32e32899431905\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/728900175f0454721e583fd76f85458a081c68fe", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E24:43EF3:3A5D7B1:45EEF42:5DCBBBE4", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"728900175f0454721e583fd76f85458a081c68fe\",\n \"node_id\": \"MDY6Q29tbWl0MjIxNDA2NTU5OjcyODkwMDE3NWYwNDU0NzIxZTU4M2ZkNzZmODU0NThhMDgxYzY4ZmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/728900175f0454721e583fd76f85458a081c68fe\",\n \"html_url\": \"https://github.com/owner/repo/commit/728900175f0454721e583fd76f85458a081c68fe\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-13T08:16:37Z\"\n },\n \"tree\": {\n \"sha\": \"61e4bdbed4d5ae985c9faa925fff5e66e4822fa2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/61e4bdbed4d5ae985c9faa925fff5e66e4822fa2\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"694709d0794f207ca69d431ba211d2fd646185ca\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/694709d0794f207ca69d431ba211d2fd646185ca\",\n \"html_url\": \"https://github.com/owner/repo/commit/694709d0794f207ca69d431ba211d2fd646185ca\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", - "status": 201 - }, - { - "body": "{\"sha\":\"728900175f0454721e583fd76f85458a081c68fe\",\"force\":false}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:38 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4219", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"63e68732339eb82b6f1122c2ebbd9a17\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E26:43EF8:8A33614:A49709F:5DCBBBE5", - "content-length": "484", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"728900175f0454721e583fd76f85458a081c68fe\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/728900175f0454721e583fd76f85458a081c68fe\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\"force\":true}", - "method": "PATCH", - "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:39 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4218", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"0315f0e76aaf4c840c8c6216b2813354\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E2B:450D5:3AFD946:469F64D:5DCBBBE6", - "content-length": "518", - "connection": "keep-alive" - }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\"\n }\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status?ts=600", - "headers": { - "Date": "Wed, 13 Nov 2019 08:16:40 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4217", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ccd25a42b0032e663128d219c88e61c\"", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2148,28 +1472,219 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E36:43EF6:6795BA3:7BAA0CD:5DCBBBE7", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1855:8070:22E9020:297608A:5DD103C4", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"2cdadfb6c576a04aa9a252ea533c85889f732cf2\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4153", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b33d1848158be05d67678a328f75cf78\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5b95d5c61ec7eed81d4e586db73e1a540a469e89", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1856:1C993:2D71A9B:35E9D85:5DD103C4" + }, + "response": "{\n \"sha\": \"5b95d5c61ec7eed81d4e586db73e1a540a469e89\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b95d5c61ec7eed81d4e586db73e1a540a469e89\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2cdadfb6c576a04aa9a252ea533c85889f732cf2\",\n \"size\": 464,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2cdadfb6c576a04aa9a252ea533c85889f732cf2\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5b95d5c61ec7eed81d4e586db73e1a540a469e89\",\"parents\":[\"5628277acd38fcae7dd66dc025a74f1b8fa964a7\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4152", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8103189169ba524791d9289e663f29e8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f6fc1937007bfd7bea297cd6049dd1b28e53296e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "185B:23E1B:2E9EEF4:373FDA9:5DD103C5" + }, + "response": "{\n \"sha\": \"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmY2ZmMxOTM3MDA3YmZkN2JlYTI5N2NkNjA0OWRkMWIyOGU1MzI5NmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"html_url\": \"https://github.com/owner/repo/commit/f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:24:37Z\"\n },\n \"tree\": {\n \"sha\": \"5b95d5c61ec7eed81d4e586db73e1a540a469e89\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5b95d5c61ec7eed81d4e586db73e1a540a469e89\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5628277acd38fcae7dd66dc025a74f1b8fa964a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/5628277acd38fcae7dd66dc025a74f1b8fa964a7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4151", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"94acc37be6e23fe15f2a05d8a1abfb77\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1861:34217:2355037:29FC3F8:5DD103C6", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/544bb4e406c0083b7742ea007672a8122f60e1a4/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4150", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"25c9dd44dd26b5505381a53e3eaabdc4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1860:806E:13949AB:1749BED:5DD103C6", + "content-length": "484" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f6fc1937007bfd7bea297cd6049dd1b28e53296e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f6fc1937007bfd7bea297cd6049dd1b28e53296e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4149", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fa6ba8bc74a69371ccb642904ed05d95\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1866:34218:2F56DE2:38161D1:5DD103C7", + "content-length": "518" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4148", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3b17f34c804155d7f5edc64e59304351\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "186B:23E1B:2E9F348:37402D8:5DD103C8", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:40 GMT", + "Date": "Sun, 17 Nov 2019 08:24:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4216", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4147", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1ddb4debeaf62b21315b11a0a493a674\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"82139e06555679e20dc2a0969e2867b4\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -2182,27 +1697,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E37:33B09:69B2689:7E2C943:5DCBBBE8", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186C:23E1A:21E3E07:283CDFE:5DD103C9", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIxNDA2NTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:41 GMT", + "Date": "Sun, 17 Nov 2019 08:24:41 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4215", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4146", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"cfcd0825bb785f60e9716907740dbe2e\"", + "ETag": "W/\"b85ef5bc2de327a6cba925aa1d39af17\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2214,32 +1728,29 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E38:BBFA:881930E:A2CC5C1:5DCBBBE8", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1871:34216:1338BE6:16C9D92:5DD103C9", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 340299613,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQwMjk5NjEz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-13T08:16:14Z\",\n \"updated_at\": \"2019-11-13T08:16:40Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"1e422a1a9990f1617da6001f1c5f7ae73213e2af\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:40Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:16:40Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 341831701,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMxNzAx\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:24:01Z\",\n \"updated_at\": \"2019-11-17T08:24:41Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"528dd0cf079fdf191f450ae7250857468a0b6a21\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:41Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:24:41Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", + "url": "/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:41 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "171", + "Date": "Sun, 17 Nov 2019 08:24:42 GMT", + "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4213", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4145", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", - "Last-Modified": "Wed, 13 Nov 2019 08:16:33 GMT", + "ETag": "W/\"3b17f34c804155d7f5edc64e59304351\"", "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2248,23 +1759,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E3D:33B09:69B27DF:7E2CAE7:5DCBBBE9", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1873:470CB:2D176E9:3562598:5DD103CA", + "content-length": "6574" }, - "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:41 GMT", + "Date": "Sun, 17 Nov 2019 08:24:42 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4214", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4144", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -2276,30 +1787,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E3E:450D6:6A5A8F8:7EAA095:5DCBBBE9", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1874:470C5:88489C:A1E898:5DD103CA", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status?ts=600", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:45 GMT", - "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 17 Nov 2019 08:24:42 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4208", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4143", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ccd25a42b0032e663128d219c88e61c\"", + "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", + "Last-Modified": "Sun, 17 Nov 2019 08:24:34 GMT", "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -2308,27 +1820,25 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E56:450D6:6A5AE8E:7EAA750:5DCBBBED", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1879:34218:2F57120:38165CF:5DD103CA" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status\"\n}\n", + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status?ts=600", + "url": "/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status?ts=600", "headers": { - "Date": "Wed, 13 Nov 2019 08:16:51 GMT", + "Date": "Sun, 17 Nov 2019 08:24:46 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4207", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4138", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"5ccd25a42b0032e663128d219c88e61c\"", + "ETag": "W/\"3b17f34c804155d7f5edc64e59304351\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -2340,11 +1850,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2E70:43EF3:3A5E363:45EFD55:5DCBBBF3", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188D:23E1A:21E425B:283D32E:5DD103CE", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b30bda9ed4c8df380e5bf706430eb48ff1e7214e/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status?ts=600", + "headers": { + "Date": "Sun, 17 Nov 2019 08:24:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4137", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3b17f34c804155d7f5edc64e59304351\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18AE:2E3EE:2332560:29C7805:5DD103D4", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3f58c21fc0ab2f92543d2adf15be4cf36ec9bf71/status\"\n}\n", "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json index 0b770edd..ac0ab7b5 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json @@ -1,52 +1,19 @@ [ - { - "method": "GET", - "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=1568124516968&ref=refs/meta/_netlify_cms", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:37 GMT", - "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", - "Content-Length": "462", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3922", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7562834922e3879c752751c218d12efe731b62cb\"", - "Last-Modified": "Tue, 10 Sep 2019 14:08:23 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B3C:244EB:1866770:1DA57E5:5D77AE65", - "connection": "keep-alive" - }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", - "status": 200 - }, { "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:38 GMT", + "Date": "Sun, 17 Nov 2019 08:30:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3921", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3887", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", - "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", + "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B46:B4DC:AE84DE:D4618D:5D77AE65", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1805:34216:1345C9C:16D93C9:5DD1052D", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -69,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:38 GMT", + "Date": "Sun, 17 Nov 2019 08:30:38 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3920", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3886", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"a26f9847e7caaf29e3327c5416048f2e\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"8eb82f2f23629a1acb04fabadc5bb359\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B48:2B1F:126D51A:167F0FA:5D77AE66", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180D:34218:2F726EF:3837809:5DD1052E", + "content-length": "7296" }, - "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:27Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:30:07Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:39 GMT", + "Date": "Sun, 17 Nov 2019 08:30:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3919", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3885", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,28 +89,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4A:244E4:B1EB54:D7AB9F:5D77AE67", - "content-length": "7422", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180E:23E1A:21F9A37:2856E35:5DD1052F", + "content-length": "2030" }, - "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:39 GMT", + "Date": "Sun, 17 Nov 2019 08:30:39 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3918", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3884", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -157,27 +121,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4C:3ED82:18DA78A:1E3EE74:5D77AE67", - "content-length": "12362", - "connection": "keep-alive" + "X-GitHub-Request-Id": "180F:2E3F0:301E1EC:38ECEDE:5DD1052F", + "content-length": "3484" }, - "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Date": "Sun, 17 Nov 2019 08:30:39 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3917", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3883", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -189,9 +152,39 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B54:B4E0:171574B:1C19B4D:5D77AE67", - "content-length": "2565", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1818:806E:13A0EB5:17588CA:5DD1052F", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:30:39 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3882", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1815:34217:236E2D0:2A19F80:5DD1052F", + "content-length": "2565" }, "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 @@ -200,16 +193,16 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Date": "Sun, 17 Nov 2019 08:30:40 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3916", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3881", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -221,59 +214,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B4F:15110:18E1423:1E3C60C:5D77AE67", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1816:34216:1345D9C:16D94F8:5DD1052F", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:40 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3915", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B5A:9D20:1197244:15842C5:5D77AE67", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Date": "Sun, 17 Nov 2019 08:30:40 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3914", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3880", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -285,9 +245,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B64:244E7:11ED00F:15E16C5:5D77AE68", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1819:8072:2E4DEAF:36FC0EA:5DD1052F", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 @@ -296,16 +255,16 @@ "method": "GET", "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:41 GMT", + "Date": "Sun, 17 Nov 2019 08:30:40 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3913", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3879", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -317,9 +276,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B66:244E7:11ED18C:15E1885:5D77AE69", - "content-length": "7465", - "connection": "keep-alive" + "X-GitHub-Request-Id": "181A:2E3F0:301E2A9:38ECFCC:5DD1052F", + "content-length": "7465" }, "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", "status": 200 @@ -328,18 +286,18 @@ "method": "GET", "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:43 GMT", + "Date": "Sun, 17 Nov 2019 08:30:43 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "462", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3912", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3878", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"7562834922e3879c752751c218d12efe731b62cb\"", - "Last-Modified": "Tue, 10 Sep 2019 14:08:23 GMT", + "ETag": "\"c4a3a7f1ac5b5df4267b41845a4b309cfc2db623\"", + "Last-Modified": "Sun, 17 Nov 2019 08:30:03 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -351,23 +309,22 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B68:3ED7B:12AE4C4:16B28F8:5D77AE6B", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1828:34217:236E69B:2A1A412:5DD10533" }, - "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"cd4a88d04f85629662fce10ececb021a81310f12\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Date": "Sun, 17 Nov 2019 08:30:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3911", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3877", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -379,9 +336,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6C:3ED77:AE950F:D3AE8A:5D77AE6C", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182E:34218:2F72D82:3838013:5DD10533", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -390,13 +346,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Date": "Sun, 17 Nov 2019 08:30:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3910", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3876", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -408,9 +364,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B6A:1510F:127B266:166FD21:5D77AE6C", - "content-length": "148", - "connection": "keep-alive" + "X-GitHub-Request-Id": "182D:23E1B:2EC02E9:3767170:5DD10533", + "content-length": "148" }, "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", "status": 404 @@ -419,13 +374,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Date": "Sun, 17 Nov 2019 08:30:44 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3909", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3875", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -437,9 +392,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B70:244EB:186733D:1DA6688:5D77AE6C", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1833:2E3EB:24FB1F:2C4471:5DD10534", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 @@ -449,17 +403,17 @@ "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:45 GMT", + "Date": "Sun, 17 Nov 2019 08:30:45 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3908", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3874", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "ETag": "\"bd28c53ff7a9fd41b3d1f8595e08c3f5\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", @@ -472,8 +426,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B72:3ED77:AE961B:D3AFC5:5D77AE6D", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1835:470CB:2D34F3D:35856B0:5DD10534" }, "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", "status": 201 @@ -482,16 +435,16 @@ "method": "GET", "url": "/repos/owner/repo/branches/master?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:46 GMT", + "Date": "Sun, 17 Nov 2019 08:30:45 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3907", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3873", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "ETag": "W/\"bfc9fa012b0823178a0ef1f46e8821ed\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -503,199 +456,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B75:9D21:1796C4F:1CBF398:5D77AE6D", - "content-length": "5961", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1839:806E:13A12D3:1758DAD:5DD10535", + "content-length": "5379" }, - "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjFjY2IwY2JlM2RkZDJkYjE3YWM2MGVlMzdhNDQxOTdkMzk3YjcyNTA=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-10-21T15:37:06Z\"\n },\n \"message\": \"Update README.md\",\n \"tree\": {\n \"sha\": \"9b14f53f9ae27ef26ec092a587f91141486cad24\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b14f53f9ae27ef26ec092a587f91141486cad24\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJdrdCiCRBK7hj4Ov3rIwAAdHIIAKLj048A/FGA7T0d5vHeCNGc\\nT5mwS+GuOlx2ILZOXDqZnre/+7T84Bv2X7qqaRbpXG7y19gm8Q/kPKkWYksn+QGn\\nDFNgbzQ6b/AA4GO53ulcJuTexk4wvWWM5xErQ9W226B1BVHI6cuF3ohq3vwN9uDC\\ni1fFpTtyU9Yzgx4+/Ktc2/iX+N65PVmhNtu3KZn7NK/ahF+4UaT++mkTPThAA8i3\\nZQ5f93VFV6bx5j/7jW2lVBRS9k3NrhrLQH8CrtLQu5D2oY9iMA2TGFv/nB+Da55l\\ner7T1ACrhEpbhQQTVAU0mBjQFSxVgulzK+ycLWdyhdniBkw1da1qJT2IAuRBF+c=\\n=9nPQ\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree 9b14f53f9ae27ef26ec092a587f91141486cad24\\nparent 217bbbf6bf84a8e1b31f7262ed5449108d22bd59\\nauthor owner 1571672226 +0300\\ncommitter GitHub 1571672226 +0300\\n\\nUpdate README.md\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/217bbbf6bf84a8e1b31f7262ed5449108d22bd59\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", "status": 200 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:46 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3906", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B76:1510F:127B502:1670085:5D77AE6E", - "content-length": "11769", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:47 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3905", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B78:9D20:1197C49:1584EF4:5D77AE6F", - "content-length": "831", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:48 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3904", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7A:2B1F:126DF9D:167FE0E:5D77AE6F", - "content-length": "2030", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "body": "{\"base_tree\":\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\"tree\":[{\"path\":\"content/posts/1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:49 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "2362", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3903", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7C:9D20:1197E05:1585109:5D77AE70", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:49 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "831", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3902", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B7E:15110:18E2446:1E3D9DA:5D77AE71", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 201 - }, - { - "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", - "method": "POST", - "url": "/repos/owner/repo/git/trees?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:50 GMT", + "Date": "Sun, 17 Nov 2019 08:30:46 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "11769", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3901", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3872", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "ETag": "\"9f5fd693997e18e1a2c8240f0bd81c1f\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -705,31 +490,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B81:2B24:182BB9B:1D6371F:5D77AE72", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183A:1C98C:23B6F3A:2A4355C:5DD10536" }, - "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\",\n \"size\": 3611,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e6ba8deeaaf2875f82ec45f7b8a9251b410cbca0\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3929038f9ab6451b2b256dfba5830676e6eecbee\",\n \"size\": 7256,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3929038f9ab6451b2b256dfba5830676e6eecbee\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ecca6ad1431a3c09f3f4dd378baddcabf96208b7\",\n \"size\": 6875,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ecca6ad1431a3c09f3f4dd378baddcabf96208b7\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ead4329fd042d185630940b8069ab22456523953\",\n \"size\": 793522,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ead4329fd042d185630940b8069ab22456523953\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"7a3255564d758757a5cbaeca450a35874e6f3e48\",\"parents\":[\"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:51 GMT", + "Date": "Sun, 17 Nov 2019 08:30:47 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1504", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3900", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3871", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"36ce8e6809f14c1e5077b19f3ff1c0bf\"", + "ETag": "\"ddc3dd6273f085658c3c6f7466824fe7\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -739,28 +523,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B82:B4DC:AE8F18:D46E17:5D77AE73", - "connection": "keep-alive" + "X-GitHub-Request-Id": "183F:23E1B:2EC06D5:3767625:5DD10536" }, - "response": "{\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjFlZTUwNzU1OGYxNWMzZjg5MmYwOGY3YmU2Njk5YTdkMmY2NmVkYmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:51Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OmM5YjdlYzNlZmU4NDJjN2U2ZWVkY2EwNTgzYjMwYjNkNjIzZjAxYTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"html_url\": \"https://github.com/owner/repo/commit/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:47Z\"\n },\n \"tree\": {\n \"sha\": \"7a3255564d758757a5cbaeca450a35874e6f3e48\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a3255564d758757a5cbaeca450a35874e6f3e48\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"1ee507558f15c3f892f08f7be6699a7d2f66edba\"}", + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\"}", "method": "POST", "url": "/repos/owner/repo/git/refs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:52 GMT", + "Date": "Sun, 17 Nov 2019 08:30:48 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "518", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3899", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3870", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"e1cb3ca854a9f02515b3d45eeea198ad\"", + "ETag": "\"feb7d641816ed33920a3dbe0186e220c\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", @@ -773,10 +556,9 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B84:1510F:127BB9B:16708B8:5D77AE73", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1844:2E3EE:2347814:29E0F50:5DD10537" }, - "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\"\n }\n}\n", "status": 201 }, { @@ -784,17 +566,17 @@ "method": "POST", "url": "/repos/owner/repo/pulls?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:54 GMT", + "Date": "Sun, 17 Nov 2019 08:30:49 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21715", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3898", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3869", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"afceff8cbb664ac849e6f01bd8191262\"", + "ETag": "\"9aee2ef81bb4c1f2e74c160ca0a0031d\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/owner/repo/pulls/9", @@ -807,27 +589,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B86:244EB:1867FDB:1DA768A:5D77AE74", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1849:2E3EE:2347928:29E10AB:5DD10538" }, - "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 316014218,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE0MjE4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:53Z\",\n \"updated_at\": \"2019-09-10T14:08:53Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 341832138,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMyMTM4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:30:49Z\",\n \"updated_at\": \"2019-11-17T08:30:49Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:30:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:30:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", "status": 201 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:55 GMT", + "Date": "Sun, 17 Nov 2019 08:30:50 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3897", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3868", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"1aaf4ccb2d2d35f69e7e839ddee19165\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"e2cb30bd0d66d5f3a7979c2fdab9d637\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -840,32 +621,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B89:3ED7B:12AF2DD:16B3A2E:5D77AE76", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "184E:806C:894DCF:A342DB:5DD1053A", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5b7f9d6445de1b5f28ce553249eb985821f14615\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjOWI3ZWMzZWZlODQyYzdlNmVlZGNhMDU4M2IzMGIzZDYyM2YwMWE3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:55 GMT", + "Date": "Sun, 17 Nov 2019 08:30:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3896", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3867", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c0cf38b37b2bd5e44dbc85cec8e10f49\"", + "ETag": "\"d44aa83dcfc866470c0894a9ceb91c9a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/31d0984cabaeeea8a94f14ad784d01fc83347f45", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -875,64 +655,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8B:2B19:AC6F60:D1EB88:5D77AE77", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1853:34217:236EEBE:2A1ADD5:5DD1053A" }, - "response": "{\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n}\n", + "response": "{\n \"sha\": \"31d0984cabaeeea8a94f14ad784d01fc83347f45\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/31d0984cabaeeea8a94f14ad784d01fc83347f45\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/277bea8590f367c8190e7c0f148f0e2891c26232?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:08:56 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3895", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"6f6c246b49046dc310f8b6bead0cc639\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8D:244EB:18684A1:1DA7C68:5D77AE78", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7562834922e3879c752751c218d12efe731b62cb\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7562834922e3879c752751c218d12efe731b62cb\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"277bea8590f367c8190e7c0f148f0e2891c26232\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"35665d9e45377d2b68fb0a9fff4c6d967771c053\"}]}", + "body": "{\"base_tree\":\"5b7f9d6445de1b5f28ce553249eb985821f14615\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"31d0984cabaeeea8a94f14ad784d01fc83347f45\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:57 GMT", + "Date": "Sun, 17 Nov 2019 08:30:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3894", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3866", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"2bb592609012d08e71abddda9165df49\"", + "ETag": "\"2642f1c8333d8c6b7c296f930e6fbf28\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f", + "Location": "https://api.github.com/repos/owner/repo/git/trees/6edbee13309804d9e6557fc33cb72a5218963b76", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -942,31 +688,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B8F:2B15:4FB4CC:60C6D8:5D77AE78", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1858:23E19:1420B79:17D1A82:5DD1053B" }, - "response": "{\n \"sha\": \"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"6edbee13309804d9e6557fc33cb72a5218963b76\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6edbee13309804d9e6557fc33cb72a5218963b76\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"31d0984cabaeeea8a94f14ad784d01fc83347f45\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/31d0984cabaeeea8a94f14ad784d01fc83347f45\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\"parents\":[\"277bea8590f367c8190e7c0f148f0e2891c26232\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6edbee13309804d9e6557fc33cb72a5218963b76\",\"parents\":[\"5b7f9d6445de1b5f28ce553249eb985821f14615\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:58 GMT", + "Date": "Sun, 17 Nov 2019 08:30:52 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3893", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3865", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"17a418681dec454a7c657dec0806efdb\"", + "ETag": "\"8b6108dd9f163624c6105542f59a2668\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a", + "Location": "https://api.github.com/repos/owner/repo/git/commits/94172922fa83a98c6c8026bd9c9d05902bf48077", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -976,27 +721,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B91:1510F:127C1C9:1671061:5D77AE79", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1859:23E19:1420BE9:17D1B0B:5DD1053C" }, - "response": "{\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmJkODViNjQ1YTZmODAyYWQ4ZTY5YmVjMTY1NmY2ZmQ2MmJmYmU4NWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"html_url\": \"https://github.com/owner/repo/commit/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:57Z\"\n },\n \"tree\": {\n \"sha\": \"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"html_url\": \"https://github.com/owner/repo/commit/277bea8590f367c8190e7c0f148f0e2891c26232\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3Ojk0MTcyOTIyZmE4M2E5OGM2YzgwMjZiZDljOWQwNTkwMmJmNDgwNzc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"html_url\": \"https://github.com/owner/repo/commit/94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:52Z\"\n },\n \"tree\": {\n \"sha\": \"6edbee13309804d9e6557fc33cb72a5218963b76\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6edbee13309804d9e6557fc33cb72a5218963b76\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5b7f9d6445de1b5f28ce553249eb985821f14615\",\n \"html_url\": \"https://github.com/owner/repo/commit/5b7f9d6445de1b5f28ce553249eb985821f14615\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\"force\":false}", + "body": "{\"sha\":\"94172922fa83a98c6c8026bd9c9d05902bf48077\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:08:59 GMT", + "Date": "Sun, 17 Nov 2019 08:30:53 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3892", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3864", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c782dbbac77169e5b76103a0824982f7\"", + "ETag": "W/\"8f41dd21042b8b0cca274c21e28dd468\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1008,29 +752,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B93:9D21:1798083:1CC0C6C:5D77AE7A", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "185E:806E:13A1753:1759308:5DD1053C", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94172922fa83a98c6c8026bd9c9d05902bf48077\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:00 GMT", + "Date": "Sun, 17 Nov 2019 08:30:54 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3891", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3863", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:08:51 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:30:47 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1042,8 +785,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B97:244EB:1868B78:1DA84FB:5D77AE7C", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1864:34218:2F73998:3838EEB:5DD1053D" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1052,13 +794,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:00 GMT", + "Date": "Sun, 17 Nov 2019 08:30:54 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3890", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3862", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1070,27 +812,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B95:2B19:AC7386:D1F0B1:5D77AE7C", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1863:1C993:2D90E99:360F169:5DD1053D", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 }, { "method": "GET", - "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", + "url": "/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:01 GMT", + "Date": "Sun, 17 Nov 2019 08:30:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3889", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3861", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", + "ETag": "W/\"bdefc47e149034676b361e93e382325a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1102,28 +843,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B99:B4DC:AE9712:D47829:5D77AE7D", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1869:806E:13A1855:1759435:5DD1053E", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status\"\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:03 GMT", + "Date": "Sun, 17 Nov 2019 08:30:55 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3888", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3860", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"c782dbbac77169e5b76103a0824982f7\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"8f41dd21042b8b0cca274c21e28dd468\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1136,32 +876,31 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9B:3ED7B:12AFDC0:16B4776:5D77AE7E", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186A:23E19:1420DDD:17D1D69:5DD1053F", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94172922fa83a98c6c8026bd9c9d05902bf48077\"\n }\n}\n", "status": 200 }, { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjOWI3ZWMzZWZlODQyYzdlNmVlZGNhMDU4M2IzMGIzZDYyM2YwMWE3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", "method": "POST", "url": "/repos/owner/repo/git/blobs?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:04 GMT", + "Date": "Sun, 17 Nov 2019 08:30:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "207", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3887", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3859", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c0a29ccadd0e3764e0c304af3e30180d\"", + "ETag": "\"0d86cff199650747fe24445205c846df\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6423f9acf2d9c2e861e725ff917b48ba250a9800", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1171,64 +910,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7B9D:9D1F:A5D0D9:CA625D:5D77AE7F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "186F:2E3F0:301F8E4:38EEA8A:5DD1053F" }, - "response": "{\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n}\n", + "response": "{\n \"sha\": \"6423f9acf2d9c2e861e725ff917b48ba250a9800\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6423f9acf2d9c2e861e725ff917b48ba250a9800\"\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/git/trees/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:09:04 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3886", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"e30df524020fc2faec3feeead1d4cbdf\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA1:B4E0:1717E43:1C1CB90:5D77AE80", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", - "status": 200 - }, - { - "body": "{\"base_tree\":\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"}]}", + "body": "{\"base_tree\":\"94172922fa83a98c6c8026bd9c9d05902bf48077\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6423f9acf2d9c2e861e725ff917b48ba250a9800\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:05 GMT", + "Date": "Sun, 17 Nov 2019 08:30:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3885", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3858", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"3901e4b42a55f1b46720013b3f8a5c5a\"", + "ETag": "\"8382e063e1cde8472925e263e0299e90\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c94a1505476f4e4ebb82ea12235e6853b0de390b", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1238,31 +943,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA3:B4DC:AE9A3B:D47C1A:5D77AE81", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1876:8072:2E4F669:36FDD82:5DD10540" }, - "response": "{\n \"sha\": \"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"c94a1505476f4e4ebb82ea12235e6853b0de390b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c94a1505476f4e4ebb82ea12235e6853b0de390b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6423f9acf2d9c2e861e725ff917b48ba250a9800\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6423f9acf2d9c2e861e725ff917b48ba250a9800\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\"parents\":[\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c94a1505476f4e4ebb82ea12235e6853b0de390b\",\"parents\":[\"94172922fa83a98c6c8026bd9c9d05902bf48077\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:06 GMT", + "Date": "Sun, 17 Nov 2019 08:30:57 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3884", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3857", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"c51f7c03055bf7b9440cb406939a00fe\"", + "ETag": "\"72a4ba37fac689d102b449e932d40dd0\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd", + "Location": "https://api.github.com/repos/owner/repo/git/commits/42913552759d42079ad450d5fe016a5afa7645cc", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1272,59 +976,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA5:2B1F:126F747:1681B9E:5D77AE82", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1878:470C9:22CAB3A:2955EE2:5DD10541" }, - "response": "{\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjU2Mzg2MTE1ZWQzMzg4ODg1MjM1ODRkZTRlODlhOTEzMDQ4ZDlhZmQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\",\n \"html_url\": \"https://github.com/owner/repo/commit/56386115ed338888523584de4e89a913048d9afd\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:06Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:06Z\"\n },\n \"tree\": {\n \"sha\": \"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"html_url\": \"https://github.com/owner/repo/commit/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"42913552759d42079ad450d5fe016a5afa7645cc\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjQyOTEzNTUyNzU5ZDQyMDc5YWQ0NTBkNWZlMDE2YTVhZmE3NjQ1Y2M=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42913552759d42079ad450d5fe016a5afa7645cc\",\n \"html_url\": \"https://github.com/owner/repo/commit/42913552759d42079ad450d5fe016a5afa7645cc\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:30:57Z\"\n },\n \"tree\": {\n \"sha\": \"c94a1505476f4e4ebb82ea12235e6853b0de390b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c94a1505476f4e4ebb82ea12235e6853b0de390b\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/94172922fa83a98c6c8026bd9c9d05902bf48077\",\n \"html_url\": \"https://github.com/owner/repo/commit/94172922fa83a98c6c8026bd9c9d05902bf48077\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "method": "GET", - "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:09:07 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3883", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "repo, repo:status", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA7:1510D:48871D:58F802:5D77AE83", - "content-length": "6574", - "connection": "keep-alive" - }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", - "status": 200 - }, - { - "body": "{\"sha\":\"56386115ed338888523584de4e89a913048d9afd\",\"force\":false}", + "body": "{\"sha\":\"42913552759d42079ad450d5fe016a5afa7645cc\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:09 GMT", + "Date": "Sun, 17 Nov 2019 08:30:58 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3882", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3856", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"af082c26839d5062e27bec2519b77702\"", + "ETag": "W/\"9f978ed337d5e7613d2aa662c7090249\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1336,28 +1007,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BA6:B4DC:AE9BF8:D47E1F:5D77AE83", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "187B:23E1A:21FAD20:28584F4:5DD10542", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"42913552759d42079ad450d5fe016a5afa7645cc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42913552759d42079ad450d5fe016a5afa7645cc\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:11 GMT", + "Date": "Sun, 17 Nov 2019 08:31:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3881", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3855", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"af082c26839d5062e27bec2519b77702\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"9f978ed337d5e7613d2aa662c7090249\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1370,94 +1040,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAA:2B1F:126FD6D:1682358:5D77AE87", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188A:34218:2F740DA:38397CC:5DD10543", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\"\n }\n}\n", - "status": 200 - }, - { - "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", - "method": "POST", - "url": "/repos/owner/repo/git/blobs?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:09:12 GMT", - "Content-Type": "application/json; charset=utf-8", - "Content-Length": "207", - "Server": "GitHub.com", - "Status": "201 Created", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3880", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"d71d4b59a718aa5bbe29657cc608d185\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAC:2B15:4FBB74:60CF5A:5D77AE88", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"9f9d0e4738ac507be7c58f2af99473968d949c11\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11\"\n}\n", - "status": 201 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/trees/56386115ed338888523584de4e89a913048d9afd?ts=300", - "headers": { - "Date": "Tue, 10 Sep 2019 14:09:13 GMT", - "Content-Type": "application/json; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3879", - "X-RateLimit-Reset": "1568126651", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"151c523c7e9056096efa1193c1b05ced\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; format=json", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BAF:1510F:127D64B:16729DD:5D77AE88", - "content-length": "1564", - "connection": "keep-alive" - }, - "response": "{\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/56386115ed338888523584de4e89a913048d9afd\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"42913552759d42079ad450d5fe016a5afa7645cc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42913552759d42079ad450d5fe016a5afa7645cc\"\n }\n}\n", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", + "url": "/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:13 GMT", + "Date": "Sun, 17 Nov 2019 08:31:00 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3878", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3854", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", + "ETag": "W/\"bdefc47e149034676b361e93e382325a\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo, repo:status", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1469,32 +1071,64 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB0:1510E:AF8393:D5E97B:5D77AE89", - "content-length": "6574", - "connection": "keep-alive" + "X-GitHub-Request-Id": "188C:8072:2E4FBE5:36FE3FE:5DD10544", + "content-length": "6574" }, - "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status\"\n}\n", "status": 200 }, { - "body": "{\"base_tree\":\"56386115ed338888523584de4e89a913048d9afd\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"9f9d0e4738ac507be7c58f2af99473968d949c11\"}]}", + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjOWI3ZWMzZWZlODQyYzdlNmVlZGNhMDU4M2IzMGIzZDYyM2YwMWE3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:31:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3853", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f2e8dcf08df917572bdf1947f2869ff8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/57807f436f05acb20e5c4026829ac739735a72da", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1890:1C985:1364E40:170E53B:5DD10544" + }, + "response": "{\n \"sha\": \"57807f436f05acb20e5c4026829ac739735a72da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57807f436f05acb20e5c4026829ac739735a72da\"\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"42913552759d42079ad450d5fe016a5afa7645cc\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"57807f436f05acb20e5c4026829ac739735a72da\"}]}", "method": "POST", "url": "/repos/owner/repo/git/trees?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:14 GMT", + "Date": "Sun, 17 Nov 2019 08:31:01 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1564", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3877", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3852", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"8e39c1772f7481d1790eb95c4fb723df\"", + "ETag": "\"46bc9fb8be68ed9a05bf495267d66875\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c6900f4f2d94fd6db9a047fcf64e7d4281ac185c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1504,31 +1138,30 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB3:9D21:17999F0:1CC2BCC:5D77AE89", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1892:8070:22FF451:2990E8C:5DD10545" }, - "response": "{\n \"sha\": \"24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9f9d0e4738ac507be7c58f2af99473968d949c11\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "response": "{\n \"sha\": \"c6900f4f2d94fd6db9a047fcf64e7d4281ac185c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c6900f4f2d94fd6db9a047fcf64e7d4281ac185c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57807f436f05acb20e5c4026829ac739735a72da\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57807f436f05acb20e5c4026829ac739735a72da\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"63199fc626fae8c8aaee4e87f659cb2f8e2071c5\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/63199fc626fae8c8aaee4e87f659cb2f8e2071c5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04a74ef135ee2633a194c55e4faa74d97cb593b5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04a74ef135ee2633a194c55e4faa74d97cb593b5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", "status": 201 }, { - "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"24971e412fc51e3425c376b96657352ef74f2ecc\",\"parents\":[\"56386115ed338888523584de4e89a913048d9afd\"]}", + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c6900f4f2d94fd6db9a047fcf64e7d4281ac185c\",\"parents\":[\"42913552759d42079ad450d5fe016a5afa7645cc\"]}", "method": "POST", "url": "/repos/owner/repo/git/commits?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:14 GMT", + "Date": "Sun, 17 Nov 2019 08:31:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1510", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3876", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3851", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "\"af133a8bbeb42e0cc5a78997ea39dc96\"", + "ETag": "\"cf96efcefcd5c486c19cf909caa869a9\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", - "Location": "https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082", + "Location": "https://api.github.com/repos/owner/repo/git/commits/649fdda4c87ed71d99a16c5e8014fe404cd26b8c", "X-GitHub-Media-Type": "github.v3; format=json", "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", "Access-Control-Allow-Origin": "*", @@ -1538,27 +1171,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB5:9D20:1199DC6:158785A:5D77AE8A", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1897:470BF:B3C37:E1E65:5DD10546" }, - "response": "{\n \"sha\": \"28ff9d7caa705a09c190a64476494e8f23981082\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjI4ZmY5ZDdjYWE3MDVhMDljMTkwYTY0NDc2NDk0ZThmMjM5ODEwODI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082\",\n \"html_url\": \"https://github.com/owner/repo/commit/28ff9d7caa705a09c190a64476494e8f23981082\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:14Z\"\n },\n \"tree\": {\n \"sha\": \"24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\",\n \"html_url\": \"https://github.com/owner/repo/commit/56386115ed338888523584de4e89a913048d9afd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "response": "{\n \"sha\": \"649fdda4c87ed71d99a16c5e8014fe404cd26b8c\",\n \"node_id\": \"MDY6Q29tbWl0MjIyMjE3ODQ3OjY0OWZkZGE0Yzg3ZWQ3MWQ5OWExNmM1ZTgwMTRmZTQwNGNkMjZiOGM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/649fdda4c87ed71d99a16c5e8014fe404cd26b8c\",\n \"html_url\": \"https://github.com/owner/repo/commit/649fdda4c87ed71d99a16c5e8014fe404cd26b8c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:31:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-11-17T08:31:02Z\"\n },\n \"tree\": {\n \"sha\": \"c6900f4f2d94fd6db9a047fcf64e7d4281ac185c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c6900f4f2d94fd6db9a047fcf64e7d4281ac185c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"42913552759d42079ad450d5fe016a5afa7645cc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/42913552759d42079ad450d5fe016a5afa7645cc\",\n \"html_url\": \"https://github.com/owner/repo/commit/42913552759d42079ad450d5fe016a5afa7645cc\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", "status": 201 }, { - "body": "{\"sha\":\"28ff9d7caa705a09c190a64476494e8f23981082\",\"force\":false}", + "body": "{\"sha\":\"649fdda4c87ed71d99a16c5e8014fe404cd26b8c\",\"force\":false}", "method": "PATCH", "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:15 GMT", + "Date": "Sun, 17 Nov 2019 08:31:03 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3875", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3850", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"224ce3c8b161ec3518e7932a15fd651e\"", + "ETag": "W/\"0e7144340f934fbb08f29309681f5e4e\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1570,28 +1202,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB7:2B1F:12701B2:16828A2:5D77AE8B", - "content-length": "484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "189B:23E19:14213C5:17D2454:5DD10546", + "content-length": "484" }, - "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"28ff9d7caa705a09c190a64476494e8f23981082\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082\"\n }\n}\n", + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"649fdda4c87ed71d99a16c5e8014fe404cd26b8c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/649fdda4c87ed71d99a16c5e8014fe404cd26b8c\"\n }\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:18 GMT", + "Date": "Sun, 17 Nov 2019 08:31:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3874", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3849", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"ba716354396a5e1f94137e28b13a44d6\"", - "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "ETag": "W/\"88851adaa303c01720df4b64ed26911e\"", + "Last-Modified": "Sun, 17 Nov 2019 08:29:23 GMT", "X-Poll-Interval": "300", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", @@ -1604,27 +1235,26 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BB9:2B1F:12704E8:1682C9C:5D77AE8D", - "content-length": "542", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A4:34218:2F74999:383A213:5DD10548", + "content-length": "542" }, - "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n }\n]\n", + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjIyMjE3ODQ3OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\"\n }\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:18 GMT", + "Date": "Sun, 17 Nov 2019 08:31:05 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3873", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3848", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"f54ae38c58346e1363b934599ceb7c80\"", + "ETag": "W/\"30d08e6788cfb018cdd37aad8f8abc09\"", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -1636,29 +1266,28 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBA:B4E0:1719656:1C1E8E9:5D77AE8E", - "content-length": "22154", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18A5:2E3ED:13AB0AD:1779653:5DD10549", + "content-length": "22154" }, - "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 316014218,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE0MjE4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:53Z\",\n \"updated_at\": \"2019-09-10T14:08:53Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"75df1c558953303ad757ae503568eb2196a6ecb5\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:09:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:09:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 341832138,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzQxODMyMTM4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-11-17T08:30:49Z\",\n \"updated_at\": \"2019-11-17T08:30:49Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"f1bf2bc9a32f969fe7c4e07adcbf02c9a485842c\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:31:03Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"1ccb0cbe3ddd2db17ac60ee37a44197d397b7250\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:29:23Z\",\n \"pushed_at\": \"2019-11-17T08:31:03Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:19 GMT", + "Date": "Sun, 17 Nov 2019 08:31:06 GMT", "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", "Content-Length": "167", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3872", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3846", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", - "Last-Modified": "Tue, 10 Sep 2019 14:08:51 GMT", + "Last-Modified": "Sun, 17 Nov 2019 08:30:47 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1670,8 +1299,7 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBE:15110:18E5854:1E41A4B:5D77AE8F", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AA:8070:22FFACF:2991640:5DD10549" }, "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", "status": 200 @@ -1680,13 +1308,13 @@ "method": "GET", "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", "headers": { - "Date": "Tue, 10 Sep 2019 14:09:19 GMT", + "Date": "Sun, 17 Nov 2019 08:31:06 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "404 Not Found", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "3871", - "X-RateLimit-Reset": "1568126651", + "X-RateLimit-Remaining": "3847", + "X-RateLimit-Reset": "1573980038", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", @@ -1698,11 +1326,41 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "7BBC:2B24:182EBDB:1D67268:5D77AE8F", - "content-length": "116", - "connection": "keep-alive" + "X-GitHub-Request-Id": "18AB:34216:1346EE3:16DA96C:5DD10549", + "content-length": "116" }, "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status?ts=300", + "headers": { + "Date": "Sun, 17 Nov 2019 08:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3845", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bdefc47e149034676b361e93e382325a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "18AC:2E3EE:2348C5F:29E27AF:5DD1054A", + "content-length": "6574" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c9b7ec3efe842c7e6eedca0583b30b3d623f01a7/status\"\n}\n", + "status": 200 } ] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json index 4a1fe7f4..b1c192f7 100644 --- a/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json @@ -3,16 +3,16 @@ "method": "GET", "url": "/user?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:31 GMT", + "Date": "Sun, 17 Nov 2019 08:22:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4338", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4250", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4880bc2ffd21970e7cfd4dcfdfbd1a52\"", + "ETag": "W/\"937cf505a1054393729dcc8ebc86f8da\"", "Last-Modified": "Tue, 05 Nov 2019 09:55:11 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", @@ -25,9 +25,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F61:BBFA:880BD4D:A2BC3D7:5DCBBB67", - "content-length": "1321", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1922:8072:2E23AD5:36C9E08:5DD10342", + "content-length": "1321" }, "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", "status": 200 @@ -36,17 +35,17 @@ "method": "GET", "url": "/repos/owner/repo?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:31 GMT", + "Date": "Sun, 17 Nov 2019 08:22:27 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4337", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4249", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"309f3d2e82a4c145f7898908e315f9b0\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"b3717ece455f73a91ecd136e2c5641f9\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; format=json", @@ -58,28 +57,27 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F66:450D6:6A4F37A:7E9C962:5DCBBB67", - "content-length": "7296", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1926:8072:2E23BDF:36C9F51:5DD10343", + "content-length": "7296" }, - "response": "{\n \"id\": 221406559,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjE0MDY1NTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-13T08:13:54Z\",\n \"updated_at\": \"2019-11-13T08:14:22Z\",\n \"pushed_at\": \"2019-11-13T08:14:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "response": "{\n \"id\": 222217847,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMjIyMTc4NDc=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-11-17T08:21:49Z\",\n \"updated_at\": \"2019-11-17T08:22:17Z\",\n \"pushed_at\": \"2019-11-17T08:22:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", "status": 200 }, { "method": "GET", "url": "/repos/owner/repo/git/trees/master:content/posts?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:32 GMT", + "Date": "Sun, 17 Nov 2019 08:22:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4335", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4247", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"715a1839a8466675f6670b1a1e3cf24e\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"d231a8c477fc160373d8afd156812e89\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -91,9 +89,8 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F74:33B0A:8AAD3FD:A56CFBD:5DCBBB68", - "content-length": "2030", - "connection": "keep-alive" + "X-GitHub-Request-Id": "192D:470C7:14D9F4F:1896331:5DD10343", + "content-length": "2030" }, "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 @@ -102,17 +99,17 @@ "method": "GET", "url": "/repos/owner/repo/git/trees/master:static/media?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:32 GMT", + "Date": "Sun, 17 Nov 2019 08:22:28 GMT", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4334", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4245", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"fa55c4c5b0a11b04c546f6d28181ea16\"", - "Last-Modified": "Wed, 13 Nov 2019 08:14:22 GMT", + "ETag": "W/\"88a1280495942e696586d3a89379f34c\"", + "Last-Modified": "Sun, 17 Nov 2019 08:22:17 GMT", "X-OAuth-Scopes": "delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; format=json", @@ -124,120 +121,23 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F7A:450D3:1A7F3CF:1FC76E4:5DCBBB68", - "content-length": "3484", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1938:470C9:22A8792:292D88C:5DD10344", + "content-length": "3484" }, "response": "{\n \"sha\": \"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\n \"tree\": [\n {\n \"path\": \"42-line-bible.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\"\n },\n {\n \"path\": \"gutenberg.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\"\n },\n {\n \"path\": \"image-0.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\"\n },\n {\n \"path\": \"image-1.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\"\n },\n {\n \"path\": \"image-2.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\"\n },\n {\n \"path\": \"image-3.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\"\n },\n {\n \"path\": \"image-4.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\"\n },\n {\n \"path\": \"movable-type.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\"\n },\n {\n \"path\": \"printing-press.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\"\n },\n {\n \"path\": \"type-through-time.jpg\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\"\n }\n ],\n \"truncated\": false\n}\n", "status": 200 }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:14:33 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4332", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8A:3A596:65B84D7:797F816:5DCBBB68", - "content-length": "2565", - "connection": "keep-alive" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:14:33 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4331", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8C:BBF0:1CED62C:227EE92:5DCBBB69", - "content-length": "2786", - "connection": "keep-alive" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", - "headers": { - "Date": "Wed, 13 Nov 2019 08:14:33 GMT", - "Content-Type": "text/plain; charset=utf-8", - "Server": "GitHub.com", - "Status": "200 OK", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4330", - "X-RateLimit-Reset": "1573635105", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", - "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", - "X-OAuth-Scopes": "delete_repo, repo", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", - "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", - "Access-Control-Allow-Origin": "*", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "1; mode=block", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8B:2CFED:906AE1E:ABEE2A7:5DCBBB69", - "content-length": "7465", - "connection": "keep-alive" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, { "method": "GET", "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:33 GMT", + "Date": "Sun, 17 Nov 2019 08:22:29 GMT", "Content-Type": "text/plain; charset=iso-8859-1", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4329", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4244", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"880e3bac59446485deb0c1abb21f88a7\"", @@ -252,24 +152,54 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F89:BBF8:693D533:7D87196:5DCBBB68", - "content-length": "1707", - "connection": "keep-alive" + "X-GitHub-Request-Id": "1948:2E3EE:2329AD5:29BD2CC:5DD10344", + "content-length": "1707" }, "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", "status": 200 }, { "method": "GET", - "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", "headers": { - "Date": "Wed, 13 Nov 2019 08:14:33 GMT", + "Date": "Sun, 17 Nov 2019 08:22:29 GMT", "Content-Type": "text/plain; charset=utf-8", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4328", - "X-RateLimit-Reset": "1573635105", + "X-RateLimit-Remaining": "4243", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"344dacc2b3cff4f660ef0b37285bbebc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "1949:23E1B:2E93E80:3732D71:5DD10344", + "content-length": "2786" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:22:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4242", + "X-RateLimit-Reset": "1573980038", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"64aba4bc04422f7e2591ed3ffdba868b\"", @@ -284,11 +214,72 @@ "X-XSS-Protection": "1; mode=block", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "2F8D:BBFA:880C031:A2BC77D:5DCBBB69", - "content-length": "16071", - "connection": "keep-alive" + "X-GitHub-Request-Id": "194A:1C985:135401A:16FA092:5DD10344", + "content-length": "16071" }, "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:22:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4241", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4bb0ef1407b91842a124b4e17cae8d76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "194D:2E3F0:2FF0D01:38B7A23:5DD10344", + "content-length": "2565" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Sun, 17 Nov 2019 08:22:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4240", + "X-RateLimit-Reset": "1573980038", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29a58f48940ff3d2dc5509a5f67ff405\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "194E:470CB:2D0D033:3555F84:5DD10344", + "content-length": "7465" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 } ] \ No newline at end of file diff --git a/package.json b/package.json index 217c0b76..a3fbf917 100644 --- a/package.json +++ b/package.json @@ -78,6 +78,8 @@ "@commitlint/cli": "^8.2.0", "@commitlint/config-conventional": "^8.2.0", "@octokit/rest": "^16.28.7", + "@testing-library/jest-dom": "^4.2.3", + "@testing-library/react": "^9.3.2", "all-contributors-cli": "^6.0.0", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.0.1", @@ -119,7 +121,6 @@ "npm-run-all": "^4.1.5", "prettier": "1.18.2", "react-test-renderer": "^16.8.4", - "react-testing-library": "^7.0.0", "rimraf": "^3.0.0", "simple-git": "^1.124.0", "start-server-and-test": "^1.7.11", diff --git a/packages/netlify-cms-backend-github/src/API.js b/packages/netlify-cms-backend-github/src/API.js index bbef0ba7..3833330a 100644 --- a/packages/netlify-cms-backend-github/src/API.js +++ b/packages/netlify-cms-backend-github/src/API.js @@ -1,6 +1,17 @@ import { Base64 } from 'js-base64'; import semaphore from 'semaphore'; -import { find, flow, get, hasIn, initial, last, partial, result, uniq } from 'lodash'; +import { + find, + flow, + get, + hasIn, + initial, + last, + partial, + result, + differenceBy, + trimStart, +} from 'lodash'; import { map } from 'lodash/fp'; import { getAllResponses, @@ -195,15 +206,10 @@ export default class API { this._metadataSemaphore.take(async () => { try { const branchData = await this.checkMetadataRef(); - const fileTree = { - [`${key}.json`]: { - path: `${key}.json`, - raw: JSON.stringify(data), - file: true, - }, - }; - await this.uploadBlob(fileTree[`${key}.json`]); - const changeTree = await this.updateTree(branchData.sha, '/', fileTree); + const file = { path: `${key}.json`, raw: JSON.stringify(data) }; + + await this.uploadBlob(file); + const changeTree = await this.updateTree(branchData.sha, [file]); const { sha } = await this.commit(`Updating “${key}” metadata`, changeTree); await this.patchRef('meta', '_netlify_cms', sha); localForage.setItem(`gh.meta.${key}`, { @@ -304,7 +310,7 @@ export default class API { return text; } - async getMediaDisplayURL(sha, path) { + async getMediaAsBlob(sha, path) { const response = await this.fetchBlob(sha, this.repoURL); let blob; if (path.match(/.svg$/)) { @@ -313,6 +319,11 @@ export default class API { } else { blob = await response.blob(); } + return blob; + } + + async getMediaDisplayURL(sha, path) { + const blob = await this.getMediaAsBlob(sha, path); return URL.createObjectURL(blob); } @@ -501,56 +512,23 @@ export default class API { } } - composeFileTree(files) { - let filename; - let part; - let parts; - let subtree; - const fileTree = {}; - - files.forEach(file => { - if (file.uploaded) { - return; - } - parts = file.path.split('/').filter(part => part); - filename = parts.pop(); - subtree = fileTree; - while ((part = parts.shift())) { - // eslint-disable-line no-cond-assign - subtree[part] = subtree[part] || {}; - subtree = subtree[part]; - } - subtree[filename] = file; - file.file = true; - }); - - return fileTree; - } - - persistFiles(entry, mediaFiles, options) { - const uploadPromises = []; + async persistFiles(entry, mediaFiles, options) { const files = entry ? mediaFiles.concat(entry) : mediaFiles; + const uploadPromises = files.filter(file => !file.uploaded).map(file => this.uploadBlob(file)); + await Promise.all(uploadPromises); - files.forEach(file => { - if (file.uploaded) { - return; - } - uploadPromises.push(this.uploadBlob(file)); - }); - - const fileTree = this.composeFileTree(files); - - return Promise.all(uploadPromises).then(() => { - if (!options.useWorkflow) { - return this.getBranch() - .then(branchData => this.updateTree(branchData.commit.sha, '/', fileTree)) - .then(changeTree => this.commit(options.commitMessage, changeTree)) - .then(response => this.patchBranch(this.branch, response.sha)); - } else { - const mediaFilesList = mediaFiles.map(file => ({ path: file.path, sha: file.sha })); - return this.editorialWorkflowGit(fileTree, entry, mediaFilesList, options); - } - }); + if (!options.useWorkflow) { + return this.getBranch() + .then(branchData => this.updateTree(branchData.commit.sha, files)) + .then(changeTree => this.commit(options.commitMessage, changeTree)) + .then(response => this.patchBranch(this.branch, response.sha)); + } else { + const mediaFilesList = mediaFiles.map(({ sha, path }) => ({ + path: trimStart(path, '/'), + sha, + })); + return this.editorialWorkflowGit(files, entry, mediaFilesList, options); + } } getFileSha(path, branch) { @@ -597,7 +575,7 @@ export default class API { return this.createPR(commitMessage, branchName); } - async editorialWorkflowGit(fileTree, entry, filesList, options) { + async editorialWorkflowGit(files, entry, mediaFilesList, options) { const contentKey = this.generateContentKey(options.collectionName, entry.slug); const branchName = this.generateBranchName(contentKey); const unpublished = options.unpublished || false; @@ -605,7 +583,7 @@ export default class API { // Open new editorial review workflow for this entry - Create new metadata and commit to new branch const userPromise = this.user(); const branchData = await this.getBranch(); - const changeTree = await this.updateTree(branchData.commit.sha, '/', fileTree); + const changeTree = await this.updateTree(branchData.commit.sha, files); const commitResponse = await this.commit(options.commitMessage, changeTree); let pr; @@ -640,24 +618,30 @@ export default class API { path: entry.path, sha: entry.sha, }, - files: filesList, + files: mediaFilesList, }, timeStamp: new Date().toISOString(), }); } else { // Entry is already on editorial review workflow - just update metadata and commit to existing branch + const metadata = await this.retrieveMetadata(contentKey); + // mark media files to remove + const metadataMediaFiles = get(metadata, 'objects.files', []); + const mediaFilesToRemove = differenceBy(metadataMediaFiles, mediaFilesList, 'path').map( + file => ({ ...file, remove: true }), + ); const branchData = await this.getBranch(branchName); - const changeTree = await this.updateTree(branchData.commit.sha, '/', fileTree); - const commitPromise = this.commit(options.commitMessage, changeTree); - const metadataPromise = this.retrieveMetadata(contentKey); - const [commit, metadata] = await Promise.all([commitPromise, metadataPromise]); + const changeTree = await this.updateTree( + branchData.commit.sha, + files.concat(mediaFilesToRemove), + ); + const commit = await this.commit(options.commitMessage, changeTree); const { title, description } = options.parsedData || {}; - const metadataFiles = get(metadata.objects, 'files', []); - const files = [...metadataFiles, ...filesList]; + const pr = metadata.pr ? { ...metadata.pr, head: commit.sha } : undefined; const objects = { entry: { path: entry.path, sha: entry.sha }, - files: uniq(files), + files: mediaFilesList, }; const updatedMetadata = { ...metadata, pr, title, description, objects }; @@ -667,7 +651,7 @@ export default class API { } if (pr) { - return this.rebasePullRequest(pr.number, branchName, contentKey, metadata, commit); + return this.rebasePullRequest(pr.number, branchName, contentKey, updatedMetadata, commit); } else if (this.useOpenAuthoring) { // if a PR hasn't been created yet for the forked repo, just patch the branch await this.patchBranch(branchName, commit.sha, { force: true }); @@ -692,7 +676,7 @@ export default class API { */ const [baseBranch, commits] = await Promise.all([ this.getBranch(), - this.getPullRequestCommits(prNumber, head), + this.getPullRequestCommits(prNumber), ]); /** @@ -891,12 +875,14 @@ export default class API { ); } - publishUnpublishedEntry(collectionName, slug) { + async publishUnpublishedEntry(collectionName, slug) { const contentKey = this.generateContentKey(collectionName, slug); const branchName = this.generateBranchName(contentKey); - return this.retrieveMetadata(contentKey) - .then(metadata => this.mergePR(metadata.pr, metadata.objects)) - .then(() => this.deleteBranch(branchName)); + const metadata = await this.retrieveMetadata(contentKey); + await this.mergePR(metadata.pr, metadata.objects); + await this.deleteBranch(branchName); + + return metadata; } createRef(type, name, sha) { @@ -1000,7 +986,6 @@ export default class API { forceMergePR(pullrequest, objects) { const files = objects.files.concat(objects.entry); - const fileTree = this.composeFileTree(files); let commitMessage = 'Automatically generated. Merged on Netlify CMS\n\nForce merge of:'; files.forEach(file => { commitMessage += `\n* "${file.path}"`; @@ -1010,7 +995,7 @@ export default class API { 'line-height: 30px;text-align: center;font-weight: bold', ); return this.getBranch() - .then(branchData => this.updateTree(branchData.commit.sha, '/', fileTree)) + .then(branchData => this.updateTree(branchData.commit.sha, files)) .then(changeTree => this.commit(commitMessage, changeTree)) .then(response => this.patchBranch(this.branch, response.sha)); } @@ -1062,47 +1047,17 @@ export default class API { ); } - updateTree(sha, path, fileTree) { - return this.getTree(sha).then(tree => { - let obj; - let filename; - let fileOrDir; - const updates = []; - const added = {}; + async updateTree(sha, files) { + const tree = files.map(file => ({ + path: trimStart(file.path, '/'), + mode: '100644', + type: 'blob', + sha: file.remove ? null : file.sha, + })); - for (let i = 0, len = tree.tree.length; i < len; i++) { - obj = tree.tree[i]; - if ((fileOrDir = fileTree[obj.path])) { - // eslint-disable-line no-cond-assign - added[obj.path] = true; - if (fileOrDir.file) { - updates.push({ path: obj.path, mode: obj.mode, type: obj.type, sha: fileOrDir.sha }); - } else { - updates.push(this.updateTree(obj.sha, obj.path, fileOrDir)); - } - } - } - for (filename in fileTree) { - fileOrDir = fileTree[filename]; - if (added[filename]) { - continue; - } - updates.push( - fileOrDir.file - ? { path: filename, mode: '100644', type: 'blob', sha: fileOrDir.sha } - : this.updateTree(null, filename, fileOrDir), - ); - } - return Promise.all(updates) - .then(tree => this.createTree(sha, tree)) - .then(response => ({ - path, - mode: '040000', - type: 'tree', - sha: response.sha, - parentSha: sha, - })); - }); + const newTree = await this.createTree(sha, tree); + newTree.parentSha = sha; + return newTree; } createTree(baseSha, tree) { diff --git a/packages/netlify-cms-backend-github/src/__tests__/API.spec.js b/packages/netlify-cms-backend-github/src/__tests__/API.spec.js index e5c63cc9..50e17eb3 100644 --- a/packages/netlify-cms-backend-github/src/__tests__/API.spec.js +++ b/packages/netlify-cms-backend-github/src/__tests__/API.spec.js @@ -1,40 +1,85 @@ +import { Base64 } from 'js-base64'; import API from '../API'; +global.fetch = jest.fn().mockRejectedValue(new Error('should not call fetch inside tests')); + describe('github API', () => { + beforeEach(() => { + jest.resetAllMocks(); + }); + const mockAPI = (api, responses) => { - api.request = (path, options = {}) => { + api.request = jest.fn().mockImplementation((path, options = {}) => { const normalizedPath = path.indexOf('?') !== -1 ? path.substr(0, path.indexOf('?')) : path; const response = responses[normalizedPath]; return typeof response === 'function' ? Promise.resolve(response(options)) : Promise.reject(new Error(`No response for path '${normalizedPath}'`)); - }; + }); }; - it('should create PR with correct base branch name when publishing with editorial workflow', () => { - let prBaseBranch = null; - const api = new API({ branch: 'gh-pages', repo: 'my-repo' }); - const responses = { - '/repos/my-repo/branches/gh-pages': () => ({ commit: { sha: 'def' } }), - '/repos/my-repo/git/trees/def': () => ({ tree: [] }), - '/repos/my-repo/git/trees': () => ({}), - '/repos/my-repo/git/commits': () => ({}), - '/repos/my-repo/git/refs': () => ({}), - '/repos/my-repo/pulls': pullRequest => { - prBaseBranch = JSON.parse(pullRequest.body).base; - return { head: { sha: 'cbd' } }; - }, - '/user': () => ({}), - '/repos/my-repo/git/blobs': () => ({}), - '/repos/my-repo/git/refs/meta/_netlify_cms': () => ({ object: {} }), - }; - mockAPI(api, responses); + describe('editorialWorkflowGit', () => { + it('should create PR with correct base branch name when publishing with editorial workflow', () => { + let prBaseBranch = null; + const api = new API({ branch: 'gh-pages', repo: 'my-repo' }); + const responses = { + '/repos/my-repo/branches/gh-pages': () => ({ commit: { sha: 'def' } }), + '/repos/my-repo/git/trees/def': () => ({ tree: [] }), + '/repos/my-repo/git/trees': () => ({}), + '/repos/my-repo/git/commits': () => ({}), + '/repos/my-repo/git/refs': () => ({}), + '/repos/my-repo/pulls': pullRequest => { + prBaseBranch = JSON.parse(pullRequest.body).base; + return { head: { sha: 'cbd' } }; + }, + '/user': () => ({}), + '/repos/my-repo/git/blobs': () => ({}), + '/repos/my-repo/git/refs/meta/_netlify_cms': () => ({ object: {} }), + }; + mockAPI(api, responses); - return expect( - api - .editorialWorkflowGit(null, { slug: 'entry', sha: 'abc' }, null, {}) - .then(() => prBaseBranch), - ).resolves.toEqual('gh-pages'); + return expect( + api + .editorialWorkflowGit([], { slug: 'entry', sha: 'abc' }, null, {}) + .then(() => prBaseBranch), + ).resolves.toEqual('gh-pages'); + }); + }); + + describe('updateTree', () => { + it('should create tree with nested paths', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + api.createTree = jest.fn().mockImplementation(() => Promise.resolve({ sha: 'newTreeSha' })); + + const files = [ + { path: '/static/media/new-image.jpeg', sha: 'new-image.jpeg', remove: true }, + { path: 'content/posts/new-post.md', sha: 'new-post.md' }, + ]; + + const baseTreeSha = 'baseTreeSha'; + + await expect(api.updateTree(baseTreeSha, files)).resolves.toEqual({ + sha: 'newTreeSha', + parentSha: baseTreeSha, + }); + + expect(api.createTree).toHaveBeenCalledTimes(1); + expect(api.createTree).toHaveBeenCalledWith(baseTreeSha, [ + { + path: 'static/media/new-image.jpeg', + mode: '100644', + type: 'blob', + sha: null, + }, + { + path: 'content/posts/new-post.md', + mode: '100644', + type: 'blob', + sha: 'new-post.md', + }, + ]); + }); }); describe('request', () => { @@ -106,4 +151,191 @@ describe('github API', () => { }); }); }); + + describe('getMediaAsBlob', () => { + it('should return response blob on non svg file', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + const blob = {}; + const response = { blob: jest.fn().mockResolvedValue(blob) }; + api.fetchBlob = jest.fn().mockResolvedValue(response); + + await expect(api.getMediaAsBlob('sha', 'static/media/image.png')).resolves.toBe(blob); + + expect(api.fetchBlob).toHaveBeenCalledTimes(1); + expect(api.fetchBlob).toHaveBeenCalledWith('sha', '/repos/owner/repo'); + + expect(response.blob).toHaveBeenCalledTimes(1); + }); + + it('should return test blob on non file', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + const response = { text: jest.fn().mockResolvedValue('svg') }; + api.fetchBlob = jest.fn().mockResolvedValue(response); + + await expect(api.getMediaAsBlob('sha', 'static/media/logo.svg')).resolves.toEqual( + new Blob(['svg'], { type: 'image/svg+xml' }), + ); + + expect(api.fetchBlob).toHaveBeenCalledTimes(1); + expect(api.fetchBlob).toHaveBeenCalledWith('sha', '/repos/owner/repo'); + + expect(response.text).toHaveBeenCalledTimes(1); + }); + }); + + describe('getMediaDisplayURL', () => { + it('should return createObjectURL result', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + const blob = {}; + api.getMediaAsBlob = jest.fn().mockResolvedValue(blob); + global.URL.createObjectURL = jest + .fn() + .mockResolvedValue('blob:http://localhost:8080/blob-id'); + + await expect(api.getMediaDisplayURL('sha', 'static/media/image.png')).resolves.toBe( + 'blob:http://localhost:8080/blob-id', + ); + + expect(api.getMediaAsBlob).toHaveBeenCalledTimes(1); + expect(api.getMediaAsBlob).toHaveBeenCalledWith('sha', 'static/media/image.png'); + + expect(global.URL.createObjectURL).toHaveBeenCalledTimes(1); + expect(global.URL.createObjectURL).toHaveBeenCalledWith(blob); + }); + }); + + describe('persistFiles', () => { + it('should update tree, commit and patch branch when useWorkflow is false', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + const responses = { + // upload the file + '/repos/owner/repo/git/blobs': () => ({ sha: 'new-file-sha' }), + + // get the branch + '/repos/owner/repo/branches/master': () => ({ commit: { sha: 'root' } }), + + // create new tree + '/repos/owner/repo/git/trees': options => { + const data = JSON.parse(options.body); + return { sha: data.base_tree }; + }, + + // update the commit with the tree + '/repos/owner/repo/git/commits': () => ({ sha: 'commit-sha' }), + + // patch the branch + '/repos/owner/repo/git/refs/heads/master': () => ({}), + }; + mockAPI(api, responses); + + const entry = { + slug: 'entry', + sha: 'abc', + path: 'content/posts/new-post.md', + raw: 'content', + }; + await api.persistFiles(entry, [], { commitMessage: 'commitMessage' }); + + expect(api.request).toHaveBeenCalledTimes(5); + + expect(api.request.mock.calls[0]).toEqual([ + '/repos/owner/repo/git/blobs', + { + method: 'POST', + body: JSON.stringify({ content: Base64.encode(entry.raw), encoding: 'base64' }), + }, + ]); + + expect(api.request.mock.calls[1]).toEqual(['/repos/owner/repo/branches/master']); + + expect(api.request.mock.calls[2]).toEqual([ + '/repos/owner/repo/git/trees', + { + body: JSON.stringify({ + base_tree: 'root', + tree: [ + { + path: 'content/posts/new-post.md', + mode: '100644', + type: 'blob', + sha: 'new-file-sha', + }, + ], + }), + method: 'POST', + }, + ]); + + expect(api.request.mock.calls[3]).toEqual([ + '/repos/owner/repo/git/commits', + { + body: JSON.stringify({ + message: 'commitMessage', + tree: 'root', + parents: ['root'], + }), + method: 'POST', + }, + ]); + + expect(api.request.mock.calls[4]).toEqual([ + '/repos/owner/repo/git/refs/heads/master', + { + body: JSON.stringify({ + sha: 'commit-sha', + force: false, + }), + method: 'PATCH', + }, + ]); + }); + + it('should call editorialWorkflowGit when useWorkflow is true', async () => { + const api = new API({ branch: 'master', repo: 'owner/repo' }); + + api.uploadBlob = jest.fn(); + api.editorialWorkflowGit = jest.fn(); + + const entry = { + slug: 'entry', + sha: 'abc', + path: 'content/posts/new-post.md', + raw: 'content', + }; + + const mediaFiles = [ + { + path: '/static/media/image-1.png', + uploaded: true, + sha: 'image-1.png', + }, + { + path: '/static/media/image-2.png', + sha: 'image-2.png', + }, + ]; + + await api.persistFiles(entry, mediaFiles, { useWorkflow: true }); + + expect(api.uploadBlob).toHaveBeenCalledTimes(2); + expect(api.uploadBlob).toHaveBeenCalledWith(entry); + expect(api.uploadBlob).toHaveBeenCalledWith(mediaFiles[1]); + + expect(api.editorialWorkflowGit).toHaveBeenCalledTimes(1); + + expect(api.editorialWorkflowGit).toHaveBeenCalledWith( + mediaFiles.concat(entry), + entry, + [ + { path: 'static/media/image-1.png', sha: 'image-1.png' }, + { path: 'static/media/image-2.png', sha: 'image-2.png' }, + ], + { useWorkflow: true }, + ); + }); + }); }); diff --git a/packages/netlify-cms-backend-github/src/__tests__/implementation.spec.js b/packages/netlify-cms-backend-github/src/__tests__/implementation.spec.js index 64db7bc6..f8de2370 100644 --- a/packages/netlify-cms-backend-github/src/__tests__/implementation.spec.js +++ b/packages/netlify-cms-backend-github/src/__tests__/implementation.spec.js @@ -20,6 +20,13 @@ describe('github backend implementation', () => { }), }; + const createObjectURL = jest.fn(); + global.URL = { + createObjectURL, + }; + + createObjectURL.mockReturnValue('displayURL'); + beforeEach(() => { jest.clearAllMocks(); }); @@ -72,4 +79,173 @@ describe('github backend implementation', () => { await expect(gitHubImplementation.forkExists({ token: 'token' })).resolves.toBe(false); }); }); + + describe('persistMedia', () => { + const persistFiles = jest.fn(); + const mockAPI = { + persistFiles, + }; + + persistFiles.mockImplementation((_, files) => { + files.forEach((file, index) => { + file.sha = index; + }); + }); + + it('should persist media file when not draft', async () => { + const gitHubImplementation = new GitHubImplementation(config); + gitHubImplementation.api = mockAPI; + + const mediaFile = { + value: 'image.png', + fileObj: { size: 100 }, + path: '/media/image.png', + }; + + expect.assertions(5); + await expect(gitHubImplementation.persistMedia(mediaFile)).resolves.toEqual({ + id: 0, + name: 'image.png', + size: 100, + displayURL: 'displayURL', + path: 'media/image.png', + draft: undefined, + }); + + expect(persistFiles).toHaveBeenCalledTimes(1); + expect(persistFiles).toHaveBeenCalledWith(null, [mediaFile], {}); + expect(createObjectURL).toHaveBeenCalledTimes(1); + expect(createObjectURL).toHaveBeenCalledWith(mediaFile.fileObj); + }); + + it('should not persist media file when draft', async () => { + const gitHubImplementation = new GitHubImplementation(config); + gitHubImplementation.api = mockAPI; + + createObjectURL.mockReturnValue('displayURL'); + + const mediaFile = { + value: 'image.png', + fileObj: { size: 100 }, + path: '/media/image.png', + }; + + expect.assertions(4); + await expect(gitHubImplementation.persistMedia(mediaFile, { draft: true })).resolves.toEqual({ + id: undefined, + name: 'image.png', + size: 100, + displayURL: 'displayURL', + path: 'media/image.png', + draft: true, + }); + + expect(persistFiles).toHaveBeenCalledTimes(0); + expect(createObjectURL).toHaveBeenCalledTimes(1); + expect(createObjectURL).toHaveBeenCalledWith(mediaFile.fileObj); + }); + + it('should log and throw error on "persistFiles" error', async () => { + const gitHubImplementation = new GitHubImplementation(config); + gitHubImplementation.api = mockAPI; + + const error = new Error('failed to persist files'); + persistFiles.mockRejectedValue(error); + + const mediaFile = { + value: 'image.png', + fileObj: { size: 100 }, + path: '/media/image.png', + }; + + expect.assertions(5); + await expect(gitHubImplementation.persistMedia(mediaFile)).rejects.toThrowError(error); + + expect(persistFiles).toHaveBeenCalledTimes(1); + expect(createObjectURL).toHaveBeenCalledTimes(0); + expect(console.error).toHaveBeenCalledTimes(1); + expect(console.error).toHaveBeenCalledWith(error); + }); + }); + + describe('getMediaFiles', () => { + const getMediaAsBlob = jest.fn(); + const mockAPI = { + getMediaAsBlob, + }; + + it('should return media files from meta data', async () => { + const gitHubImplementation = new GitHubImplementation(config); + gitHubImplementation.api = mockAPI; + + const blob = new Blob(['']); + getMediaAsBlob.mockResolvedValue(blob); + + const file = new File([blob], name); + + const data = { + metaData: { + objects: { + files: [{ path: 'static/media/image.png', sha: 'image.png' }], + }, + }, + }; + + await expect(gitHubImplementation.getMediaFiles(data)).resolves.toEqual([ + { + id: 'image.png', + sha: 'image.png', + displayURL: 'displayURL', + path: 'static/media/image.png', + name: 'image.png', + size: file.size, + file, + }, + ]); + }); + }); + + describe('unpublishedEntry', () => { + const generateContentKey = jest.fn(); + const readUnpublishedBranchFile = jest.fn(); + + const mockAPI = { + generateContentKey, + readUnpublishedBranchFile, + }; + + it('should return unpublished entry', async () => { + const gitHubImplementation = new GitHubImplementation(config); + gitHubImplementation.api = mockAPI; + gitHubImplementation.getMediaFiles = jest.fn().mockResolvedValue([{ path: 'image.png' }]); + + generateContentKey.mockReturnValue('contentKey'); + + const data = { + fileData: 'fileData', + isModification: true, + metaData: { objects: { entry: { path: 'entry-path' } } }, + }; + readUnpublishedBranchFile.mockResolvedValue(data); + + const collection = { get: jest.fn().mockReturnValue('posts') }; + await expect(gitHubImplementation.unpublishedEntry(collection, 'slug')).resolves.toEqual({ + slug: 'slug', + file: { path: 'entry-path' }, + data: 'fileData', + metaData: { objects: { entry: { path: 'entry-path' } } }, + mediaFiles: [{ path: 'image.png' }], + isModification: true, + }); + + expect(generateContentKey).toHaveBeenCalledTimes(1); + expect(generateContentKey).toHaveBeenCalledWith('posts', 'slug'); + + expect(readUnpublishedBranchFile).toHaveBeenCalledTimes(1); + expect(readUnpublishedBranchFile).toHaveBeenCalledWith('contentKey'); + + expect(gitHubImplementation.getMediaFiles).toHaveBeenCalledTimes(1); + expect(gitHubImplementation.getMediaFiles).toHaveBeenCalledWith(data); + }); + }); }); diff --git a/packages/netlify-cms-backend-github/src/implementation.js b/packages/netlify-cms-backend-github/src/implementation.js index a93e0ee8..32f465dc 100644 --- a/packages/netlify-cms-backend-github/src/implementation.js +++ b/packages/netlify-cms-backend-github/src/implementation.js @@ -4,6 +4,7 @@ import semaphore from 'semaphore'; import { stripIndent } from 'common-tags'; import { asyncLock } from 'netlify-cms-lib-util'; import AuthenticationPage from './AuthenticationPage'; +import { get } from 'lodash'; import API from './API'; import GraphQLAPI from './GraphQLAPI'; @@ -331,7 +332,9 @@ export default class GitHub { async persistMedia(mediaFile, options = {}) { try { - await this.api.persistFiles(null, [mediaFile], options); + if (!options.draft) { + await this.api.persistFiles(null, [mediaFile], options); + } const { sha, value, path, fileObj } = mediaFile; const displayURL = URL.createObjectURL(fileObj); @@ -341,6 +344,7 @@ export default class GitHub { size: fileObj.size, displayURL, path: trimStart(path, '/'), + draft: options.draft, }; } catch (error) { console.error(error); @@ -352,6 +356,29 @@ export default class GitHub { return this.api.deleteFile(path, commitMessage, options); } + async getMediaFiles(data) { + const files = get(data, 'metaData.objects.files', []); + const mediaFiles = await Promise.all( + files.map(file => + this.api.getMediaAsBlob(file.sha, file.path).then(blob => { + const name = file.path.substring(file.path.lastIndexOf('/') + 1); + const fileObj = new File([blob], name); + return { + id: file.sha, + sha: file.sha, + displayURL: URL.createObjectURL(fileObj), + path: file.path, + name: name, + size: fileObj.size, + file: fileObj, + }; + }), + ), + ); + + return mediaFiles; + } + unpublishedEntries() { return this.api .listUnpublishedBranches() @@ -371,10 +398,9 @@ export default class GitHub { resolve(null); sem.leave(); } else { - const path = data.metaData.objects.entry.path; resolve({ slug, - file: { path }, + file: { path: data.metaData.objects.entry.path }, data: data.fileData, metaData: data.metaData, isModification: data.isModification, @@ -400,18 +426,21 @@ export default class GitHub { }); } - unpublishedEntry(collection, slug) { + async unpublishedEntry(collection, slug) { const contentKey = this.api.generateContentKey(collection.get('name'), slug); - return this.api.readUnpublishedBranchFile(contentKey).then(data => { - if (!data) return null; - return { - slug, - file: { path: data.metaData.objects.entry.path }, - data: data.fileData, - metaData: data.metaData, - isModification: data.isModification, - }; - }); + const data = await this.api.readUnpublishedBranchFile(contentKey); + if (!data) { + return null; + } + const mediaFiles = await this.getMediaFiles(data); + return { + slug, + file: { path: data.metaData.objects.entry.path }, + data: data.fileData, + metaData: data.metaData, + mediaFiles, + isModification: data.isModification, + }; } /** @@ -456,9 +485,10 @@ export default class GitHub { publishUnpublishedEntry(collection, slug) { // publishUnpublishedEntry is a transactional operation - return this.runWithLock( - () => this.api.publishUnpublishedEntry(collection, slug), - 'Failed to acquire publish entry lock', - ); + return this.runWithLock(async () => { + const metaData = await this.api.publishUnpublishedEntry(collection, slug); + const mediaFiles = await this.getMediaFiles({ metaData }); + return { mediaFiles }; + }, 'Failed to acquire publish entry lock'); } } diff --git a/packages/netlify-cms-backend-test/src/implementation.js b/packages/netlify-cms-backend-test/src/implementation.js index 770c51fa..8578484c 100644 --- a/packages/netlify-cms-backend-test/src/implementation.js +++ b/packages/netlify-cms-backend-test/src/implementation.js @@ -123,6 +123,15 @@ export default class TestBackend { return Promise.resolve(window.repoFilesUnpublished); } + getMediaFiles(entry) { + const mediaFiles = entry.mediaFiles.map(file => ({ + ...file, + ...this.mediaFileToAsset(file), + file: file.fileObj, + })); + return mediaFiles; + } + unpublishedEntry(collection, slug) { const entry = window.repoFilesUnpublished.find( e => e.metaData.collection === collection.get('name') && e.slug === slug, @@ -132,6 +141,8 @@ export default class TestBackend { new EditorialWorkflowError('content is not under editorial workflow', true), ); } + entry.mediaFiles = this.getMediaFiles(entry); + return Promise.resolve(entry); } @@ -144,14 +155,17 @@ export default class TestBackend { return Promise.resolve(); } - persistEntry({ path, raw, slug }, mediaFiles, options = {}) { + async persistEntry({ path, raw, slug }, mediaFiles, options = {}) { if (options.useWorkflow) { const unpubStore = window.repoFilesUnpublished; + const existingEntryIndex = unpubStore.findIndex(e => e.file.path === path); if (existingEntryIndex >= 0) { const unpubEntry = { ...unpubStore[existingEntryIndex], data: raw }; unpubEntry.title = options.parsedData && options.parsedData.title; unpubEntry.description = options.parsedData && options.parsedData.description; + unpubEntry.mediaFiles = mediaFiles; + unpubStore.splice(existingEntryIndex, 1, unpubEntry); } else { const unpubEntry = { @@ -166,6 +180,7 @@ export default class TestBackend { description: options.parsedData && options.parsedData.description, }, slug, + mediaFiles, }; unpubStore.push(unpubEntry); } @@ -182,6 +197,7 @@ export default class TestBackend { } else { window.repoFiles[folder][fileName].content = raw; } + await Promise.all(mediaFiles.map(file => this.persistMedia(file))); return Promise.resolve(); } @@ -194,7 +210,7 @@ export default class TestBackend { return Promise.resolve(); } - publishUnpublishedEntry(collection, slug) { + async publishUnpublishedEntry(collection, slug) { const unpubStore = window.repoFilesUnpublished; const unpubEntryIndex = unpubStore.findIndex( e => e.metaData.collection === collection && e.slug === slug, @@ -202,19 +218,32 @@ export default class TestBackend { const unpubEntry = unpubStore[unpubEntryIndex]; const entry = { raw: unpubEntry.data, slug: unpubEntry.slug, path: unpubEntry.file.path }; unpubStore.splice(unpubEntryIndex, 1); - return this.persistEntry(entry); + + await this.persistEntry(entry, unpubEntry.mediaFiles); + return { mediaFiles: this.getMediaFiles(unpubEntry) }; } + getMedia() { return Promise.resolve(this.assets); } - persistMedia({ fileObj }) { + mediaFileToAsset(mediaFile) { + const { fileObj } = mediaFile; const { name, size } = fileObj; const objectUrl = attempt(window.URL.createObjectURL, fileObj); const url = isError(objectUrl) ? '' : objectUrl; - const normalizedAsset = { id: uuid(), name, size, path: url, url }; + const normalizedAsset = { id: uuid(), name, size, path: mediaFile.path, url }; + + return normalizedAsset; + } + + persistMedia(mediaFile, options = {}) { + const normalizedAsset = this.mediaFileToAsset(mediaFile); + + if (!options.draft) { + this.assets.push(normalizedAsset); + } - this.assets.push(normalizedAsset); return Promise.resolve(normalizedAsset); } diff --git a/packages/netlify-cms-core/src/__tests__/backend.spec.js b/packages/netlify-cms-core/src/__tests__/backend.spec.js index 6a362a60..183e81aa 100644 --- a/packages/netlify-cms-core/src/__tests__/backend.spec.js +++ b/packages/netlify-cms-core/src/__tests__/backend.spec.js @@ -1,7 +1,10 @@ -import { resolveBackend } from '../backend'; +import { resolveBackend, Backend } from '../backend'; import registry from 'Lib/registry'; +import { Map, List } from 'immutable'; jest.mock('Lib/registry'); +jest.mock('netlify-cms-lib-util'); +jest.mock('Formats/formats'); const configWrapper = inputObject => ({ get: prop => inputObject[prop], @@ -108,4 +111,271 @@ describe('Backend', () => { expect(result.length).toBe(1); }); }); + + describe('getLocalDraftBackup', () => { + const { localForage } = require('netlify-cms-lib-util'); + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should return empty object on no item', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + const collection = Map({ + name: 'posts', + }); + const slug = 'slug'; + + localForage.getItem.mockReturnValue(); + + const result = await backend.getLocalDraftBackup(collection, slug); + + expect(result).toEqual({}); + expect(localForage.getItem).toHaveBeenCalledTimes(1); + expect(localForage.getItem).toHaveBeenCalledWith('backup.posts.slug'); + }); + + it('should return empty object on item with empty content', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + const collection = Map({ + name: 'posts', + }); + const slug = 'slug'; + + localForage.getItem.mockReturnValue({ raw: '' }); + + const result = await backend.getLocalDraftBackup(collection, slug); + + expect(result).toEqual({}); + expect(localForage.getItem).toHaveBeenCalledTimes(1); + expect(localForage.getItem).toHaveBeenCalledWith('backup.posts.slug'); + }); + + it('should return backup entry, empty media files and assets when only raw property was saved', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + const collection = Map({ + name: 'posts', + }); + const slug = 'slug'; + + localForage.getItem.mockReturnValue({ + raw: 'content', + }); + + const result = await backend.getLocalDraftBackup(collection, slug); + + expect(result).toEqual({ + assets: [], + mediaFiles: [], + entry: { + collection: 'posts', + slug: 'slug', + path: '', + partial: false, + raw: 'content', + data: {}, + label: null, + metaData: null, + isModification: null, + }, + }); + expect(localForage.getItem).toHaveBeenCalledTimes(1); + expect(localForage.getItem).toHaveBeenCalledWith('backup.posts.slug'); + }); + + it('should return backup entry, media files and assets when all were backed up', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + const collection = Map({ + name: 'posts', + }); + const slug = 'slug'; + + localForage.getItem.mockReturnValue({ + raw: 'content', + mediaFiles: [{ id: '1' }], + assets: [{ public_path: 'public_path' }], + }); + + const result = await backend.getLocalDraftBackup(collection, slug); + + expect(result).toEqual({ + assets: [{ public_path: 'public_path' }], + mediaFiles: [{ id: '1' }], + entry: { + collection: 'posts', + slug: 'slug', + path: '', + partial: false, + raw: 'content', + data: {}, + label: null, + metaData: null, + isModification: null, + }, + }); + expect(localForage.getItem).toHaveBeenCalledTimes(1); + expect(localForage.getItem).toHaveBeenCalledWith('backup.posts.slug'); + }); + }); + + describe('persistLocalDraftBackup', () => { + const { localForage } = require('netlify-cms-lib-util'); + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should not persist empty entry', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + backend.entryToRaw = jest.fn().mockReturnValue(''); + + const collection = Map({ + name: 'posts', + }); + + const slug = 'slug'; + + const entry = Map({ + slug, + }); + + await backend.persistLocalDraftBackup(entry, collection, List(), List()); + + expect(backend.entryToRaw).toHaveBeenCalledTimes(1); + expect(backend.entryToRaw).toHaveBeenCalledWith(collection, entry); + expect(localForage.setItem).toHaveBeenCalledTimes(0); + }); + + it('should persist non empty entry', async () => { + const implementation = { + init: jest.fn(() => implementation), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + backend.entryToRaw = jest.fn().mockReturnValue('content'); + + const collection = Map({ + name: 'posts', + }); + + const slug = 'slug'; + + const entry = Map({ + slug, + path: 'content/posts/entry.md', + }); + + const mediaFiles = List([{ id: '1' }]); + const assets = List([{ public_path: 'public_path' }]); + + await backend.persistLocalDraftBackup(entry, collection, mediaFiles, assets); + + expect(backend.entryToRaw).toHaveBeenCalledTimes(1); + expect(backend.entryToRaw).toHaveBeenCalledWith(collection, entry); + expect(localForage.setItem).toHaveBeenCalledTimes(2); + expect(localForage.setItem).toHaveBeenCalledWith('backup.posts.slug', { + assets: [{ public_path: 'public_path' }], + mediaFiles: [{ id: '1' }], + path: 'content/posts/entry.md', + raw: 'content', + }); + expect(localForage.setItem).toHaveBeenCalledWith('backup', 'content'); + }); + }); + + describe('persistMedia', () => { + it('should persist media', async () => { + const persistMediaResult = {}; + const implementation = { + init: jest.fn(() => implementation), + persistMedia: jest.fn().mockResolvedValue(persistMediaResult), + }; + const config = Map({}); + + const user = { login: 'login', name: 'name' }; + const backend = new Backend(implementation, { config, backendName: 'github' }); + backend.currentUser = jest.fn().mockResolvedValue(user); + + const file = { path: 'static/media/image.png' }; + + const result = await backend.persistMedia(config, file, true); + expect(result).toBe(persistMediaResult); + expect(implementation.persistMedia).toHaveBeenCalledTimes(1); + expect(implementation.persistMedia).toHaveBeenCalledWith( + { path: 'static/media/image.png' }, + { commitMessage: 'Upload “static/media/image.png”', draft: true }, + ); + }); + }); + + describe('unpublishedEntry', () => { + it('should return unpublished entry', async () => { + const unpublishedEntryResult = { + file: { path: 'path' }, + isModification: true, + metaData: {}, + mediaFiles: [{ id: '1' }], + data: 'content', + }; + const implementation = { + init: jest.fn(() => implementation), + unpublishedEntry: jest.fn().mockResolvedValue(unpublishedEntryResult), + }; + const config = Map({}); + + const backend = new Backend(implementation, { config, backendName: 'github' }); + + const collection = Map({ + name: 'posts', + }); + + const slug = 'slug'; + + const result = await backend.unpublishedEntry(collection, slug); + expect(result).toEqual({ + collection: 'draft', + slug: '', + path: 'path', + partial: false, + raw: 'content', + data: {}, + label: null, + metaData: {}, + isModification: true, + mediaFiles: [{ id: '1' }], + }); + }); + }); }); diff --git a/packages/netlify-cms-core/src/actions/__tests__/editorialWorkflow.spec.js b/packages/netlify-cms-core/src/actions/__tests__/editorialWorkflow.spec.js new file mode 100644 index 00000000..1bf3abaa --- /dev/null +++ b/packages/netlify-cms-core/src/actions/__tests__/editorialWorkflow.spec.js @@ -0,0 +1,230 @@ +import { BEGIN, COMMIT, REVERT } from 'redux-optimist'; +import * as actions from '../editorialWorkflow'; +import { setDraftEntryMediaFiles } from '../entries'; +import { addAssets } from '../media'; +import configureMockStore from 'redux-mock-store'; +import thunk from 'redux-thunk'; +import { fromJS } from 'immutable'; + +jest.mock('coreSrc/backend'); +jest.mock('Reducers', () => { + return { + getAsset: jest.fn().mockReturnValue({}), + }; +}); +jest.mock('ValueObjects/AssetProxy'); +jest.mock('netlify-cms-lib-util'); +jest.mock('uuid/v4', () => { + return jest.fn().mockReturnValue('000000000000000000000'); +}); +jest.mock('redux-notifications', () => { + const actual = jest.requireActual('redux-notifications'); + return { + ...actual, + actions: { + notifSend: jest.fn().mockImplementation(payload => ({ + type: 'NOTIF_SEND', + ...payload, + })), + }, + }; +}); + +const middlewares = [thunk]; +const mockStore = configureMockStore(middlewares); + +describe('editorialWorkflow actions', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + describe('loadUnpublishedEntry', () => { + it('should load unpublished entry', () => { + const { currentBackend } = require('coreSrc/backend'); + const { createAssetProxy } = require('ValueObjects/AssetProxy'); + + const assetProxy = { name: 'name', public_path: 'public_path' }; + const entry = { mediaFiles: [{ file: { name: 'name' }, id: '1' }] }; + const backend = { + unpublishedEntry: jest.fn().mockResolvedValue(entry), + }; + + const store = mockStore({ + config: fromJS({}), + collections: fromJS({ + posts: { name: 'posts' }, + }), + mediaLibrary: fromJS({ + isLoading: false, + }), + }); + + currentBackend.mockReturnValue(backend); + createAssetProxy.mockResolvedValue(assetProxy); + + const slug = 'slug'; + const collection = store.getState().collections.get('posts'); + + return store.dispatch(actions.loadUnpublishedEntry(collection, slug)).then(() => { + const actions = store.getActions(); + expect(actions).toHaveLength(5); + expect(actions[0]).toEqual({ + type: 'UNPUBLISHED_ENTRY_REQUEST', + payload: { + collection: 'posts', + slug, + }, + }); + expect(actions[1]).toEqual(addAssets([assetProxy])); + expect(actions[2]).toEqual( + setDraftEntryMediaFiles([ + { + file: { name: 'name' }, + name: 'name', + id: '1', + draft: true, + public_path: 'public_path', + }, + ]), + ); + expect(actions[3]).toEqual({ + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + payload: { + mediaFiles: [{ file: { name: 'name' }, id: '1', draft: true }], + }, + }); + expect(actions[4]).toEqual({ + type: 'UNPUBLISHED_ENTRY_SUCCESS', + payload: { + collection: 'posts', + entry, + }, + }); + }); + }); + }); + + describe('publishUnpublishedEntry', () => { + it('should publish unpublished entry and report success', () => { + const { currentBackend } = require('coreSrc/backend'); + + const mediaFiles = [{ file: { name: 'name' }, id: '1' }]; + const entry = { mediaFiles }; + const backend = { + publishUnpublishedEntry: jest.fn().mockResolvedValue({ mediaFiles }), + getEntry: jest.fn().mockResolvedValue(entry), + }; + + const store = mockStore({ + config: fromJS({}), + mediaLibrary: fromJS({ + isLoading: false, + }), + collections: fromJS({ + posts: { name: 'posts' }, + }), + }); + + currentBackend.mockReturnValue(backend); + + const slug = 'slug'; + + return store.dispatch(actions.publishUnpublishedEntry('posts', slug)).then(() => { + const actions = store.getActions(); + expect(actions).toHaveLength(7); + expect(actions[0]).toEqual({ + type: 'UNPUBLISHED_ENTRY_PUBLISH_REQUEST', + payload: { + collection: 'posts', + slug, + }, + optimist: { type: BEGIN, id: '000000000000000000000' }, + }); + expect(actions[1]).toEqual({ + type: 'NOTIF_SEND', + message: { key: 'ui.toast.entryPublished' }, + kind: 'success', + dismissAfter: 4000, + }); + expect(actions[2]).toEqual({ + type: 'UNPUBLISHED_ENTRY_PUBLISH_SUCCESS', + payload: { + collection: 'posts', + slug, + }, + optimist: { type: COMMIT, id: '000000000000000000000' }, + }); + expect(actions[3]).toEqual({ + type: 'ENTRY_REQUEST', + payload: { + slug, + collection: 'posts', + }, + }); + expect(actions[4]).toEqual({ + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + payload: { + mediaFiles: [{ file: { name: 'name' }, id: '1', draft: false }], + }, + }); + expect(actions[5]).toEqual({ + type: 'CLEAR_DRAFT_ENTRY_MEDIA_FILES', + }); + expect(actions[6]).toEqual({ + type: 'ENTRY_SUCCESS', + payload: { + entry, + collection: 'posts', + }, + }); + }); + }); + + it('should publish unpublished entry and report error', () => { + const { currentBackend } = require('coreSrc/backend'); + + const error = new Error('failed to publish entry'); + const backend = { + publishUnpublishedEntry: jest.fn().mockRejectedValue(error), + }; + + const store = mockStore({ + config: fromJS({}), + collections: fromJS({ + posts: { name: 'posts' }, + }), + }); + + currentBackend.mockReturnValue(backend); + + const slug = 'slug'; + + return store.dispatch(actions.publishUnpublishedEntry('posts', slug)).then(() => { + const actions = store.getActions(); + expect(actions).toHaveLength(3); + expect(actions[0]).toEqual({ + type: 'UNPUBLISHED_ENTRY_PUBLISH_REQUEST', + payload: { + collection: 'posts', + slug, + }, + optimist: { type: BEGIN, id: '000000000000000000000' }, + }); + expect(actions[1]).toEqual({ + type: 'NOTIF_SEND', + message: { key: 'ui.toast.onFailToPublishEntry', details: error }, + kind: 'danger', + dismissAfter: 8000, + }); + expect(actions[2]).toEqual({ + type: 'UNPUBLISHED_ENTRY_PUBLISH_FAILURE', + payload: { + collection: 'posts', + slug, + }, + optimist: { type: REVERT, id: '000000000000000000000' }, + }); + }); + }); + }); +}); diff --git a/packages/netlify-cms-core/src/actions/__tests__/entries.spec.js b/packages/netlify-cms-core/src/actions/__tests__/entries.spec.js index c4f22ea3..136d3fc9 100644 --- a/packages/netlify-cms-core/src/actions/__tests__/entries.spec.js +++ b/packages/netlify-cms-core/src/actions/__tests__/entries.spec.js @@ -1,5 +1,27 @@ -import { fromJS } from 'immutable'; -import { createEmptyDraftData } from '../entries'; +import { fromJS, List, Map } from 'immutable'; +import { + createEmptyDraftData, + retrieveLocalBackup, + persistLocalBackup, + getMediaAssets, + discardDraft, + loadLocalBackup, +} from '../entries'; +import configureMockStore from 'redux-mock-store'; +import thunk from 'redux-thunk'; + +jest.mock('coreSrc/backend'); +jest.mock('Reducers', () => { + return { + getAsset: jest.fn().mockReturnValue({}), + }; +}); +jest.mock('ValueObjects/AssetProxy'); +jest.mock('netlify-cms-lib-util'); +jest.mock('../mediaLibrary.js'); + +const middlewares = [thunk]; +const mockStore = configureMockStore(middlewares); describe('entries', () => { describe('createEmptyDraftData', () => { @@ -79,4 +101,166 @@ describe('entries', () => { expect(createEmptyDraftData(fields)).toEqual({}); }); }); + + describe('discardDraft', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should delete media files on discard draft', () => { + const { deleteMedia } = require('../mediaLibrary'); + const mediaFiles = [{ draft: false }, { draft: true }]; + + deleteMedia.mockImplementation(file => ({ type: 'DELETE_MEDIA', payload: file })); + + const store = mockStore({ + config: Map(), + entryDraft: Map({ + mediaFiles: List(mediaFiles), + }), + }); + + store.dispatch(discardDraft()); + + const actions = store.getActions(); + + expect(actions).toHaveLength(2); + expect(actions[0]).toEqual({ type: 'DELETE_MEDIA', payload: { draft: true } }); + expect(actions[1]).toEqual({ type: 'DRAFT_DISCARD' }); + }); + }); + + describe('persistLocalBackup', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should persist local backup with media files', () => { + const getState = jest.fn(); + const { currentBackend } = require('coreSrc/backend'); + const { getAsset } = require('Reducers'); + + const backend = { + persistLocalDraftBackup: jest.fn((...args) => args), + }; + + const state = { config: {} }; + + currentBackend.mockReturnValue(backend); + getAsset.mockImplementation((state, path) => path); + getState.mockReturnValue(state); + + const entry = Map(); + const collection = Map(); + const mediaFiles = [{ public_path: '/static/media/image.png' }]; + + const result = persistLocalBackup(entry, collection, mediaFiles)(null, getState); + + expect(result).toEqual([entry, collection, mediaFiles, ['/static/media/image.png']]); + }); + }); + + describe('retrieveLocalBackup', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should retrieve media files with local backup', () => { + const { currentBackend } = require('coreSrc/backend'); + const { createAssetProxy } = require('ValueObjects/AssetProxy'); + const { addMediaFilesToLibrary } = require('../mediaLibrary'); + + addMediaFilesToLibrary.mockImplementation(mediaFiles => ({ + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + payload: { mediaFiles }, + })); + + const backend = { + getLocalDraftBackup: jest.fn((...args) => args), + }; + + const store = mockStore({ + config: Map(), + }); + + currentBackend.mockReturnValue(backend); + createAssetProxy.mockImplementation((value, fileObj) => ({ value, fileObj })); + + const collection = Map({ + name: 'collection', + }); + const slug = 'slug'; + + const entry = {}; + const mediaFiles = [{ public_path: '/static/media/image.png' }]; + const assets = [{ value: 'image.png', fileObj: {} }]; + + backend.getLocalDraftBackup.mockReturnValue({ entry, mediaFiles, assets }); + + return store.dispatch(retrieveLocalBackup(collection, slug)).then(() => { + const actions = store.getActions(); + + expect(createAssetProxy).toHaveBeenCalledTimes(1); + expect(createAssetProxy).toHaveBeenCalledWith(assets[0].value, assets[0].fileObj); + expect(actions).toHaveLength(2); + + expect(actions[0]).toEqual({ + type: 'ADD_ASSETS', + payload: [{ value: 'image.png', fileObj: {} }], + }); + expect(actions[1]).toEqual({ + type: 'DRAFT_LOCAL_BACKUP_RETRIEVED', + payload: { entry, mediaFiles }, + }); + }); + }); + }); + + describe('loadLocalBackup', () => { + it('should add backup media files to media library', () => { + const store = mockStore({ + config: Map(), + entryDraft: Map({ + mediaFiles: List([{ path: 'static/media.image.png' }]), + }), + mediaLibrary: Map({ + isLoading: false, + }), + }); + + store.dispatch(loadLocalBackup()); + + const actions = store.getActions(); + + expect(actions).toHaveLength(2); + expect(actions[0]).toEqual({ + type: 'DRAFT_CREATE_FROM_LOCAL_BACKUP', + }); + expect(actions[1]).toEqual({ + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + payload: { mediaFiles: [{ path: 'static/media.image.png', draft: true }] }, + }); + }); + }); + + describe('getMediaAssets', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should map mediaFiles to assets', () => { + const { getAsset } = require('Reducers'); + const state = {}; + const mediaFiles = [{ public_path: 'public_path' }]; + + const asset = { name: 'asset1' }; + + getAsset.mockReturnValue(asset); + + expect(getMediaAssets(state, mediaFiles)).toEqual([asset]); + + expect(getAsset).toHaveBeenCalledTimes(1); + expect(getAsset).toHaveBeenCalledWith(state, 'public_path'); + }); + }); }); diff --git a/packages/netlify-cms-core/src/actions/__tests__/mediaLibrary.spec.js b/packages/netlify-cms-core/src/actions/__tests__/mediaLibrary.spec.js index 60dfae12..62d1f198 100644 --- a/packages/netlify-cms-core/src/actions/__tests__/mediaLibrary.spec.js +++ b/packages/netlify-cms-core/src/actions/__tests__/mediaLibrary.spec.js @@ -1,7 +1,11 @@ import configureMockStore from 'redux-mock-store'; import thunk from 'redux-thunk'; -import { fromJS } from 'immutable'; -import { insertMedia } from '../mediaLibrary'; +import { fromJS, List, Map } from 'immutable'; +import { insertMedia, persistMedia, deleteMedia, addMediaFilesToLibrary } from '../mediaLibrary'; + +jest.mock('coreSrc/backend'); +jest.mock('ValueObjects/AssetProxy'); +jest.mock('../waitUntil'); const middlewares = [thunk]; const mockStore = configureMockStore(middlewares); @@ -110,4 +114,260 @@ describe('mediaLibrary', () => { } }); }); + + const { currentBackend } = require('coreSrc/backend'); + const { createAssetProxy } = require('ValueObjects/AssetProxy'); + + const backend = { + persistMedia: jest.fn(() => ({ id: 'id' })), + deleteMedia: jest.fn(), + }; + + currentBackend.mockReturnValue(backend); + + describe('persistMedia', () => { + global.URL = { createObjectURL: jest.fn().mockReturnValue('displayURL') }; + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should persist media as draft in editorial workflow', () => { + const store = mockStore({ + config: Map({ + publish_mode: 'editorial_workflow', + }), + integrations: Map(), + mediaLibrary: Map({ + files: List(), + }), + entryDraft: Map({ + entry: Map({ isPersisting: false }), + }), + }); + + const file = new File([''], 'name.png'); + const assetProxy = { public_path: '/media/name.png' }; + createAssetProxy.mockReturnValue(assetProxy); + + return store.dispatch(persistMedia(file)).then(() => { + const actions = store.getActions(); + + expect(actions).toHaveLength(4); + expect(actions[0]).toEqual({ type: 'MEDIA_PERSIST_REQUEST' }); + expect(actions[1]).toEqual({ + type: 'ADD_ASSET', + payload: { public_path: '/media/name.png' }, + }); + expect(actions[2]).toEqual({ + type: 'ADD_DRAFT_ENTRY_MEDIA_FILE', + payload: { draft: true, id: 'id', public_path: '/media/name.png' }, + }); + expect(actions[3]).toEqual({ + type: 'MEDIA_PERSIST_SUCCESS', + payload: { + file: { draft: true, id: 'id', displayURL: 'displayURL' }, + }, + }); + + expect(backend.persistMedia).toHaveBeenCalledTimes(1); + expect(backend.persistMedia).toHaveBeenCalledWith( + store.getState().config, + assetProxy, + true, + ); + }); + }); + + it('should not persist media as draft when not in editorial workflow', () => { + const store = mockStore({ + config: Map({}), + integrations: Map(), + mediaLibrary: Map({ + files: List(), + }), + entryDraft: Map({ + entry: Map({ isPersisting: false }), + }), + }); + + const file = new File([''], 'name.png'); + const assetProxy = { public_path: '/media/name.png' }; + createAssetProxy.mockReturnValue(assetProxy); + + return store.dispatch(persistMedia(file)).then(() => { + const actions = store.getActions(); + + expect(actions).toHaveLength(3); + expect(actions[0]).toEqual({ type: 'MEDIA_PERSIST_REQUEST' }); + expect(actions[1]).toEqual({ + type: 'ADD_ASSET', + payload: { public_path: '/media/name.png' }, + }); + expect(actions[2]).toEqual({ + type: 'MEDIA_PERSIST_SUCCESS', + payload: { + file: { draft: false, id: 'id', displayURL: 'displayURL' }, + }, + }); + + expect(backend.persistMedia).toHaveBeenCalledTimes(1); + expect(backend.persistMedia).toHaveBeenCalledWith( + store.getState().config, + assetProxy, + false, + ); + }); + }); + + it('should not persist media as draft when draft is empty', () => { + const store = mockStore({ + config: Map({ + publish_mode: 'editorial_workflow', + }), + integrations: Map(), + mediaLibrary: Map({ + files: List(), + }), + entryDraft: Map({ + entry: Map(), + }), + }); + + const file = new File([''], 'name.png'); + const assetProxy = { public_path: '/media/name.png' }; + createAssetProxy.mockReturnValue(assetProxy); + + return store.dispatch(persistMedia(file)).then(() => { + expect(backend.persistMedia).toHaveBeenCalledTimes(1); + expect(backend.persistMedia).toHaveBeenCalledWith( + store.getState().config, + assetProxy, + false, + ); + }); + }); + }); + + describe('deleteMedia', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should delete non draft file', () => { + const store = mockStore({ + config: Map({ + publish_mode: 'editorial_workflow', + }), + integrations: Map(), + mediaLibrary: Map({ + files: List(), + }), + entryDraft: Map({ + entry: Map({ isPersisting: false }), + }), + }); + + const file = { name: 'name.png', id: 'id', path: 'static/media/name.png', draft: false }; + const assetProxy = { public_path: '/media/name.png' }; + createAssetProxy.mockReturnValue(assetProxy); + + return store.dispatch(deleteMedia(file)).then(() => { + const actions = store.getActions(); + + expect(actions).toHaveLength(4); + expect(actions[0]).toEqual({ type: 'MEDIA_DELETE_REQUEST' }); + expect(actions[1]).toEqual({ + type: 'REMOVE_ASSET', + payload: '/media/name.png', + }); + expect(actions[2]).toEqual({ + type: 'REMOVE_DRAFT_ENTRY_MEDIA_FILE', + payload: { id: 'id' }, + }); + expect(actions[3]).toEqual({ + type: 'MEDIA_DELETE_SUCCESS', + payload: { file }, + }); + + expect(backend.deleteMedia).toHaveBeenCalledTimes(1); + expect(backend.deleteMedia).toHaveBeenCalledWith( + store.getState().config, + 'static/media/name.png', + ); + }); + }); + + it('should not delete a draft file', () => { + const store = mockStore({ + config: Map({ + publish_mode: 'editorial_workflow', + }), + integrations: Map(), + mediaLibrary: Map({ + files: List(), + }), + entryDraft: Map({ + entry: Map({ isPersisting: false }), + }), + }); + + const file = { name: 'name.png', id: 'id', path: 'static/media/name.png', draft: true }; + const assetProxy = { public_path: '/media/name.png' }; + createAssetProxy.mockReturnValue(assetProxy); + + return store.dispatch(deleteMedia(file)).then(() => { + expect(backend.deleteMedia).toHaveBeenCalledTimes(0); + }); + }); + }); + + describe('addMediaFilesToLibrary', () => { + it('should not wait if media library is loaded', () => { + const store = mockStore({ + mediaLibrary: Map({ + isLoading: false, + }), + }); + + const mediaFiles = [{ id: '1' }]; + store.dispatch(addMediaFilesToLibrary(mediaFiles)); + + const actions = store.getActions(); + + expect(actions).toHaveLength(1); + expect(actions[0]).toEqual({ + payload: { mediaFiles: [{ id: '1' }] }, + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + }); + }); + + it('should wait if media library is not loaded', () => { + const { waitUntil } = require('../waitUntil'); + + waitUntil.mockImplementation(payload => ({ type: 'WAIT_UNTIL', ...payload })); + + const store = mockStore({ + mediaLibrary: Map({}), + }); + + const mediaFiles = [{ id: '1' }]; + store.dispatch(addMediaFilesToLibrary(mediaFiles)); + + const actions = store.getActions(); + + expect(actions).toHaveLength(1); + expect(actions[0]).toEqual({ + type: 'WAIT_UNTIL', + predicate: expect.any(Function), + run: expect.any(Function), + }); + + expect(actions[0].predicate({ type: 'MEDIA_LOAD_SUCCESS' })).toBe(true); + expect(actions[0].run(store.dispatch)).toEqual({ + payload: { mediaFiles: [{ id: '1' }] }, + type: 'ADD_MEDIA_FILES_TO_LIBRARY', + }); + }); + }); }); diff --git a/packages/netlify-cms-core/src/actions/editorialWorkflow.js b/packages/netlify-cms-core/src/actions/editorialWorkflow.js index cbb76bf5..18a23259 100644 --- a/packages/netlify-cms-core/src/actions/editorialWorkflow.js +++ b/packages/netlify-cms-core/src/actions/editorialWorkflow.js @@ -3,11 +3,20 @@ import { actions as notifActions } from 'redux-notifications'; import { BEGIN, COMMIT, REVERT } from 'redux-optimist'; import { serializeValues } from 'Lib/serializeEntryValues'; import { currentBackend } from 'coreSrc/backend'; -import { getAsset, selectPublishedSlugs, selectUnpublishedSlugs } from 'Reducers'; +import { selectPublishedSlugs, selectUnpublishedSlugs } from 'Reducers'; import { selectFields } from 'Reducers/collections'; import { EDITORIAL_WORKFLOW } from 'Constants/publishModes'; import { EDITORIAL_WORKFLOW_ERROR } from 'netlify-cms-lib-util'; -import { loadEntry } from './entries'; +import { + loadEntry, + getMediaAssets, + setDraftEntryMediaFiles, + clearDraftEntryMediaFiles, +} from './entries'; +import { createAssetProxy } from 'ValueObjects/AssetProxy'; +import { addAssets } from './media'; +import { addMediaFilesToLibrary } from './mediaLibrary'; + import ValidationErrorTypes from 'Constants/validationErrorTypes'; const { notifSend } = notifActions; @@ -230,30 +239,55 @@ function unpublishedEntryDeleteError(collection, slug, transactionID) { */ export function loadUnpublishedEntry(collection, slug) { - return (dispatch, getState) => { + return async (dispatch, getState) => { const state = getState(); const backend = currentBackend(state.config); + dispatch(unpublishedEntryLoading(collection, slug)); - backend - .unpublishedEntry(collection, slug) - .then(entry => dispatch(unpublishedEntryLoaded(collection, entry))) - .catch(error => { - if (error.name === EDITORIAL_WORKFLOW_ERROR && error.notUnderEditorialWorkflow) { - dispatch(unpublishedEntryRedirected(collection, slug)); - dispatch(loadEntry(collection, slug)); - } else { - dispatch( - notifSend({ - message: { - key: 'ui.toast.onFailToLoadEntries', - details: error, - }, - kind: 'danger', - dismissAfter: 8000, - }), - ); - } - }); + + try { + const entry = await backend.unpublishedEntry(collection, slug); + const mediaFiles = entry.mediaFiles; + const assetProxies = await Promise.all( + mediaFiles.map(({ file }) => createAssetProxy(file.name, file)), + ); + dispatch(addAssets(assetProxies)); + dispatch( + setDraftEntryMediaFiles( + assetProxies.map((asset, index) => ({ + ...asset, + ...mediaFiles[index], + draft: true, + })), + ), + ); + dispatch( + addMediaFilesToLibrary( + mediaFiles.map(file => ({ + ...file, + draft: true, + })), + ), + ); + + dispatch(unpublishedEntryLoaded(collection, entry)); + } catch (error) { + if (error.name === EDITORIAL_WORKFLOW_ERROR && error.notUnderEditorialWorkflow) { + dispatch(unpublishedEntryRedirected(collection, slug)); + dispatch(loadEntry(collection, slug)); + } else { + dispatch( + notifSend({ + message: { + key: 'ui.toast.onFailToLoadEntries', + details: error, + }, + kind: 'danger', + dismissAfter: 8000, + }), + ); + } + } }; } @@ -314,7 +348,7 @@ export function persistUnpublishedEntry(collection, existingUnpublishedEntry) { const backend = currentBackend(state.config); const transactionID = uuid(); - const assetProxies = entryDraft.get('mediaFiles').map(path => getAsset(state, path)); + const assetProxies = getMediaAssets(state, entryDraft.get('mediaFiles')); const entry = entryDraft.get('entry'); /** @@ -455,7 +489,7 @@ export function publishUnpublishedEntry(collection, slug) { dispatch(unpublishedEntryPublishRequest(collection, slug, transactionID)); return backend .publishUnpublishedEntry(collection, slug) - .then(() => { + .then(({ mediaFiles }) => { dispatch( notifSend({ message: { key: 'ui.toast.entryPublished' }, @@ -463,8 +497,12 @@ export function publishUnpublishedEntry(collection, slug) { dismissAfter: 4000, }), ); + dispatch(unpublishedEntryPublished(collection, slug, transactionID)); dispatch(loadEntry(collections.get(collection), slug)); + + dispatch(addMediaFilesToLibrary(mediaFiles.map(file => ({ ...file, draft: false })))); + dispatch(clearDraftEntryMediaFiles()); }) .catch(error => { dispatch( diff --git a/packages/netlify-cms-core/src/actions/entries.js b/packages/netlify-cms-core/src/actions/entries.js index a7ac2d4f..a0b30177 100644 --- a/packages/netlify-cms-core/src/actions/entries.js +++ b/packages/netlify-cms-core/src/actions/entries.js @@ -9,7 +9,10 @@ import { selectFields } from 'Reducers/collections'; import { selectCollectionEntriesCursor } from 'Reducers/cursors'; import { Cursor } from 'netlify-cms-lib-util'; import { createEntry } from 'ValueObjects/Entry'; +import { createAssetProxy } from 'ValueObjects/AssetProxy'; import ValidationErrorTypes from 'Constants/validationErrorTypes'; +import { deleteMedia, addMediaFilesToLibrary } from './mediaLibrary'; +import { addAssets } from './media'; const { notifSend } = notifActions; @@ -42,6 +45,11 @@ export const ENTRY_DELETE_REQUEST = 'ENTRY_DELETE_REQUEST'; export const ENTRY_DELETE_SUCCESS = 'ENTRY_DELETE_SUCCESS'; export const ENTRY_DELETE_FAILURE = 'ENTRY_DELETE_FAILURE'; +export const ADD_DRAFT_ENTRY_MEDIA_FILE = 'ADD_DRAFT_ENTRY_MEDIA_FILE'; +export const SET_DRAFT_ENTRY_MEDIA_FILES = 'SET_DRAFT_ENTRY_MEDIA_FILES'; +export const REMOVE_DRAFT_ENTRY_MEDIA_FILE = 'REMOVE_DRAFT_ENTRY_MEDIA_FILE'; +export const CLEAR_DRAFT_ENTRY_MEDIA_FILES = 'CLEAR_DRAFT_ENTRY_MEDIA_FILES'; + /* * Simple Action Creators (Internal) * We still need to export them for tests @@ -185,16 +193,24 @@ export function emptyDraftCreated(entry) { /* * Exported simple Action Creators */ -export function createDraftFromEntry(entry, metadata) { +export function createDraftFromEntry(entry, metadata, mediaFiles) { return { type: DRAFT_CREATE_FROM_ENTRY, - payload: { entry, metadata }, + payload: { entry, metadata, mediaFiles }, }; } export function discardDraft() { - return { - type: DRAFT_DISCARD, + return (dispatch, getState) => { + const state = getState(); + + const mediaDrafts = state.entryDraft.get('mediaFiles').filter(file => file.draft); + + mediaDrafts.forEach(file => { + dispatch(deleteMedia(file)); + }); + + dispatch({ type: DRAFT_DISCARD }); }; } @@ -223,24 +239,55 @@ export function clearFieldErrors() { return { type: DRAFT_CLEAR_ERRORS }; } -export function localBackupRetrieved(entry) { +export function localBackupRetrieved(entry, mediaFiles) { return { type: DRAFT_LOCAL_BACKUP_RETRIEVED, - payload: { entry }, + payload: { entry, mediaFiles }, }; } export function loadLocalBackup() { - return { - type: DRAFT_CREATE_FROM_LOCAL_BACKUP, + return (dispatch, getState) => { + dispatch({ + type: DRAFT_CREATE_FROM_LOCAL_BACKUP, + }); + + // only add media files to the library after loading from backup was approved + const state = getState(); + const mediaFiles = state.entryDraft.get('mediaFiles').toJS(); + const filesToAdd = mediaFiles.map(file => ({ + ...file, + draft: true, + })); + dispatch(addMediaFilesToLibrary(filesToAdd)); }; } -export function persistLocalBackup(entry, collection) { +export function addDraftEntryMediaFile(file) { + return { type: ADD_DRAFT_ENTRY_MEDIA_FILE, payload: file }; +} + +export function setDraftEntryMediaFiles(files) { + return { type: SET_DRAFT_ENTRY_MEDIA_FILES, payload: files }; +} + +export function removeDraftEntryMediaFile(file) { + return { type: REMOVE_DRAFT_ENTRY_MEDIA_FILE, payload: file }; +} + +export function clearDraftEntryMediaFiles() { + return { type: CLEAR_DRAFT_ENTRY_MEDIA_FILES }; +} + +export function persistLocalBackup(entry, collection, mediaFiles) { return (dispatch, getState) => { const state = getState(); const backend = currentBackend(state.config); - return backend.persistLocalDraftBackup(entry, collection); + + // persist any pending related media files and assets + const assets = getMediaAssets(state, mediaFiles); + + return backend.persistLocalDraftBackup(entry, collection, mediaFiles, assets); }; } @@ -248,9 +295,16 @@ export function retrieveLocalBackup(collection, slug) { return async (dispatch, getState) => { const state = getState(); const backend = currentBackend(state.config); - const entry = await backend.getLocalDraftBackup(collection, slug); + const { entry, mediaFiles, assets } = await backend.getLocalDraftBackup(collection, slug); + if (entry) { - return dispatch(localBackupRetrieved(entry)); + // load assets from backup + const assetProxies = await Promise.all( + assets.map(asset => createAssetProxy(asset.value, asset.fileObj)), + ); + dispatch(addAssets(assetProxies)); + + return dispatch(localBackupRetrieved(entry, mediaFiles)); } }; } @@ -462,6 +516,10 @@ export function createEmptyDraftData(fields, withNameKey = true) { }, {}); } +export function getMediaAssets(state, mediaFiles) { + return mediaFiles.map(file => getAsset(state, file.public_path)); +} + export function persistEntry(collection) { return (dispatch, getState) => { const state = getState(); @@ -491,7 +549,7 @@ export function persistEntry(collection) { } const backend = currentBackend(state.config); - const assetProxies = entryDraft.get('mediaFiles').map(path => getAsset(state, path)); + const assetProxies = getMediaAssets(state, entryDraft.get('mediaFiles')); const entry = entryDraft.get('entry'); /** diff --git a/packages/netlify-cms-core/src/actions/media.js b/packages/netlify-cms-core/src/actions/media.js index da9f4553..2c4ccb47 100644 --- a/packages/netlify-cms-core/src/actions/media.js +++ b/packages/netlify-cms-core/src/actions/media.js @@ -1,6 +1,11 @@ +export const ADD_ASSETS = 'ADD_ASSETS'; export const ADD_ASSET = 'ADD_ASSET'; export const REMOVE_ASSET = 'REMOVE_ASSET'; +export function addAssets(assets) { + return { type: ADD_ASSETS, payload: assets }; +} + export function addAsset(assetProxy) { return { type: ADD_ASSET, payload: assetProxy }; } diff --git a/packages/netlify-cms-core/src/actions/mediaLibrary.js b/packages/netlify-cms-core/src/actions/mediaLibrary.js index c3e1f6a8..f5d46180 100644 --- a/packages/netlify-cms-core/src/actions/mediaLibrary.js +++ b/packages/netlify-cms-core/src/actions/mediaLibrary.js @@ -2,11 +2,14 @@ import { Map } from 'immutable'; import { actions as notifActions } from 'redux-notifications'; import { resolveMediaFilename, getBlobSHA } from 'netlify-cms-lib-util'; import { currentBackend } from 'coreSrc/backend'; +import { EDITORIAL_WORKFLOW } from 'Constants/publishModes'; import { createAssetProxy } from 'ValueObjects/AssetProxy'; import { selectIntegration } from 'Reducers'; import { getIntegrationProvider } from 'Integrations'; -import { addAsset } from './media'; +import { addAsset, removeAsset } from './media'; +import { addDraftEntryMediaFile, removeDraftEntryMediaFile } from './entries'; import { sanitizeSlug } from 'Lib/urlHelper'; +import { waitUntil } from './waitUntil'; const { notifSend } = notifActions; @@ -27,6 +30,7 @@ export const MEDIA_DELETE_FAILURE = 'MEDIA_DELETE_FAILURE'; export const MEDIA_DISPLAY_URL_REQUEST = 'MEDIA_DISPLAY_URL_REQUEST'; export const MEDIA_DISPLAY_URL_SUCCESS = 'MEDIA_DISPLAY_URL_SUCCESS'; export const MEDIA_DISPLAY_URL_FAILURE = 'MEDIA_DISPLAY_URL_FAILURE'; +export const ADD_MEDIA_FILES_TO_LIBRARY = 'ADD_MEDIA_FILES_TO_LIBRARY'; export function createMediaLibrary(instance) { const api = { @@ -195,14 +199,41 @@ export function persistMedia(file, opts = {}) { const id = await getBlobSHA(file); const assetProxy = await createAssetProxy(fileName, file, false, privateUpload); dispatch(addAsset(assetProxy)); + + const entry = state.entryDraft.get('entry'); + const useWorkflow = state.config.getIn(['publish_mode']) === EDITORIAL_WORKFLOW; + const draft = entry && !entry.isEmpty() && useWorkflow; + if (!integration) { - const asset = await backend.persistMedia(state.config, assetProxy); + const asset = await backend.persistMedia(state.config, assetProxy, draft); + + const assetId = asset.id || id; const displayURL = asset.displayURL || URL.createObjectURL(file); - return dispatch(mediaPersisted({ id, displayURL, ...asset })); + + if (draft) { + dispatch( + addDraftEntryMediaFile({ + ...asset, + id: assetId, + draft, + public_path: assetProxy.public_path, + }), + ); + } + + return dispatch( + mediaPersisted({ + ...asset, + id: assetId, + displayURL, + draft, + }), + ); } + return dispatch( mediaPersisted( - { id, displayURL: URL.createObjectURL(file), ...assetProxy.asset }, + { id, displayURL: URL.createObjectURL(file), ...assetProxy.asset, draft }, { privateUpload }, ), ); @@ -222,37 +253,18 @@ export function persistMedia(file, opts = {}) { export function deleteMedia(file, opts = {}) { const { privateUpload } = opts; - return (dispatch, getState) => { + return async (dispatch, getState) => { const state = getState(); const backend = currentBackend(state.config); const integration = selectIntegration(state, null, 'assetStore'); if (integration) { const provider = getIntegrationProvider(state.integrations, backend.getToken, integration); dispatch(mediaDeleting()); - return provider - .delete(file.id) - .then(() => { - return dispatch(mediaDeleted(file, { privateUpload })); - }) - .catch(error => { - console.error(error); - dispatch( - notifSend({ - message: `Failed to delete media: ${error.message}`, - kind: 'danger', - dismissAfter: 8000, - }), - ); - return dispatch(mediaDeleteFailed({ privateUpload })); - }); - } - dispatch(mediaDeleting()); - return backend - .deleteMedia(state.config, file.path) - .then(() => { - return dispatch(mediaDeleted(file)); - }) - .catch(error => { + + try { + await provider.delete(file.id); + return dispatch(mediaDeleted(file, { privateUpload })); + } catch (error) { console.error(error); dispatch( notifSend({ @@ -261,8 +273,32 @@ export function deleteMedia(file, opts = {}) { dismissAfter: 8000, }), ); - return dispatch(mediaDeleteFailed()); - }); + return dispatch(mediaDeleteFailed({ privateUpload })); + } + } + dispatch(mediaDeleting()); + + try { + const assetProxy = await createAssetProxy(file.name, file); + dispatch(removeAsset(assetProxy.public_path)); + dispatch(removeDraftEntryMediaFile({ id: file.id })); + + if (!file.draft) { + await backend.deleteMedia(state.config, file.path); + } + + return dispatch(mediaDeleted(file)); + } catch (error) { + console.error(error); + dispatch( + notifSend({ + message: `Failed to delete media: ${error.message}`, + kind: 'danger', + dismissAfter: 8000, + }), + ); + return dispatch(mediaDeleteFailed()); + } }; } @@ -335,6 +371,27 @@ export function mediaPersisted(asset, opts = {}) { }; } +export function addMediaFilesToLibrary(mediaFiles) { + return (dispatch, getState) => { + const state = getState(); + const action = { + type: ADD_MEDIA_FILES_TO_LIBRARY, + payload: { mediaFiles }, + }; + // add media files to library only after the library finished loading + if (state.mediaLibrary.get('isLoading') === false) { + dispatch(action); + } else { + dispatch( + waitUntil({ + predicate: ({ type }) => type === MEDIA_LOAD_SUCCESS, + run: dispatch => dispatch(action), + }), + ); + } + }; +} + export function mediaPersistFailed(error, opts = {}) { const { privateUpload } = opts; return { type: MEDIA_PERSIST_FAILURE, payload: { privateUpload } }; diff --git a/packages/netlify-cms-core/src/actions/waitUntil.js b/packages/netlify-cms-core/src/actions/waitUntil.js new file mode 100644 index 00000000..3456bbfd --- /dev/null +++ b/packages/netlify-cms-core/src/actions/waitUntil.js @@ -0,0 +1,9 @@ +import { WAIT_UNTIL_ACTION } from '../redux/middleware/waitUntilAction'; + +export function waitUntil({ predicate, run }) { + return { + type: WAIT_UNTIL_ACTION, + predicate, + run, + }; +} diff --git a/packages/netlify-cms-core/src/backend.js b/packages/netlify-cms-core/src/backend.js index 4b155fd5..02a62dee 100644 --- a/packages/netlify-cms-core/src/backend.js +++ b/packages/netlify-cms-core/src/backend.js @@ -402,22 +402,31 @@ export class Backend { const key = getEntryBackupKey(collection.get('name'), slug); const backup = await localForage.getItem(key); if (!backup || !backup.raw.trim()) { - return; + return {}; } - const { raw, path } = backup; + const { raw, path, mediaFiles = [], assets = [] } = backup; + const label = selectFileEntryLabel(collection, slug); - return this.entryWithFormat(collection, slug)( + const entry = this.entryWithFormat(collection, slug)( createEntry(collection.get('name'), slug, path, { raw, label }), ); + + return { entry, mediaFiles, assets }; } - async persistLocalDraftBackup(entry, collection) { + async persistLocalDraftBackup(entry, collection, mediaFiles, assets) { const key = getEntryBackupKey(collection.get('name'), entry.get('slug')); const raw = this.entryToRaw(collection, entry); if (!raw.trim()) { return; } - await localForage.setItem(key, { raw, path: entry.get('path') }); + + await localForage.setItem(key, { + raw, + path: entry.get('path'), + mediaFiles: mediaFiles.toJS(), + assets: assets.toJS(), + }); return localForage.setItem(getEntryBackupKey(), raw); } @@ -511,6 +520,7 @@ export class Backend { isModification: loadedEntry.isModification, }); entry.metaData = loadedEntry.metaData; + entry.mediaFiles = loadedEntry.mediaFiles; return entry; }) .then(this.entryWithFormat(collection, slug)); @@ -663,7 +673,7 @@ export class Backend { return this.implementation.persistEntry(entryObj, MediaFiles, opts).then(() => entryObj.slug); } - async persistMedia(config, file) { + async persistMedia(config, file, draft) { const user = await this.currentUser(); const options = { commitMessage: commitMessageFormatter( @@ -676,6 +686,7 @@ export class Backend { }, user.useOpenAuthoring, ), + draft, }; return this.implementation.persistMedia(file, options); } diff --git a/packages/netlify-cms-core/src/components/Editor/Editor.js b/packages/netlify-cms-core/src/components/Editor/Editor.js index d099ef1e..eb5094c0 100644 --- a/packages/netlify-cms-core/src/components/Editor/Editor.js +++ b/packages/netlify-cms-core/src/components/Editor/Editor.js @@ -41,7 +41,7 @@ const navigateToNewEntry = collectionName => navigateCollection(`${collectionNam const navigateToEntry = (collectionName, slug) => navigateCollection(`${collectionName}/entries/${slug}`); -class Editor extends React.Component { +export class Editor extends React.Component { static propTypes = { boundGetAsset: PropTypes.func.isRequired, changeDraftField: PropTypes.func.isRequired, @@ -79,10 +79,10 @@ class Editor extends React.Component { }), hasChanged: PropTypes.bool, t: PropTypes.func.isRequired, - retrieveLocalBackup: PropTypes.func, - localBackup: PropTypes.bool, + retrieveLocalBackup: PropTypes.func.isRequired, + localBackup: ImmutablePropTypes.map, loadLocalBackup: PropTypes.func, - persistLocalBackup: PropTypes.func, + persistLocalBackup: PropTypes.func.isRequired, deleteLocalBackup: PropTypes.func, }; @@ -190,7 +190,11 @@ class Editor extends React.Component { } if (this.props.hasChanged) { - this.createBackup(this.props.entryDraft.get('entry'), this.props.collection); + this.createBackup( + this.props.entryDraft.get('entry'), + this.props.collection, + this.props.entryDraft.get('mediaFiles'), + ); } if (prevProps.entry === this.props.entry) return; @@ -205,7 +209,8 @@ class Editor extends React.Component { const values = deserializeValues(entry.get('data'), fields); const deserializedEntry = entry.set('data', values); const fieldsMetaData = this.props.entryDraft && this.props.entryDraft.get('fieldsMetaData'); - this.createDraft(deserializedEntry, fieldsMetaData); + const mediaFiles = this.props.entryDraft && this.props.entryDraft.get('mediaFiles'); + this.createDraft(deserializedEntry, fieldsMetaData, mediaFiles); } else if (newEntry) { prevProps.createEmptyDraft(collection); } @@ -217,12 +222,12 @@ class Editor extends React.Component { window.removeEventListener('beforeunload', this.exitBlocker); } - createBackup = debounce(function(entry, collection) { - this.props.persistLocalBackup(entry, collection); + createBackup = debounce(function(entry, collection, mediaFiles) { + this.props.persistLocalBackup(entry, collection, mediaFiles); }, 2000); - createDraft = (entry, metadata) => { - if (entry) this.props.createDraftFromEntry(entry, metadata); + createDraft = (entry, metadata, mediaFiles) => { + if (entry) this.props.createDraftFromEntry(entry, metadata, mediaFiles); }; handleChangeStatus = newStatusName => { diff --git a/packages/netlify-cms-core/src/components/Editor/__tests__/Editor.spec.js b/packages/netlify-cms-core/src/components/Editor/__tests__/Editor.spec.js new file mode 100644 index 00000000..d5cb4bf5 --- /dev/null +++ b/packages/netlify-cms-core/src/components/Editor/__tests__/Editor.spec.js @@ -0,0 +1,247 @@ +import React from 'react'; +import { Editor } from '../Editor'; +import { render } from '@testing-library/react'; +import { fromJS } from 'immutable'; + +jest.mock('lodash/debounce', () => { + const flush = jest.fn(); + return func => { + func.flush = flush; + return func; + }; +}); +jest.mock('../EditorInterface', () => props => ); +jest.mock('netlify-cms-ui-default', () => { + return { + // eslint-disable-next-line react/display-name + Loader: props => , + }; +}); +jest.mock('Routing/history'); + +describe('Editor', () => { + const props = { + boundGetAsset: jest.fn(), + changeDraftField: jest.fn(), + changeDraftFieldValidation: jest.fn(), + collection: fromJS({ name: 'posts' }), + createDraftFromEntry: jest.fn(), + createEmptyDraft: jest.fn(), + discardDraft: jest.fn(), + entry: fromJS({}), + entryDraft: fromJS({}), + loadEntry: jest.fn(), + persistEntry: jest.fn(), + deleteEntry: jest.fn(), + showDelete: true, + fields: fromJS([]), + slug: 'slug', + newEntry: true, + updateUnpublishedEntryStatus: jest.fn(), + publishUnpublishedEntry: jest.fn(), + deleteUnpublishedEntry: jest.fn(), + logoutUser: jest.fn(), + loadEntries: jest.fn(), + deployPreview: fromJS({}), + loadDeployPreview: jest.fn(), + user: fromJS({}), + t: jest.fn(key => key), + localBackup: fromJS({}), + retrieveLocalBackup: jest.fn(), + persistLocalBackup: jest.fn(), + }; + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should render loader when entryDraft is null', () => { + // suppress prop type error + jest.spyOn(console, 'error').mockImplementation(() => {}); + const { asFragment } = render(); + expect(asFragment()).toMatchSnapshot(); + expect(console.error).toHaveBeenCalledTimes(1); + expect(console.error).toHaveBeenCalledWith( + 'Warning: Failed prop type: Required prop `entryDraft` was not specified in `Editor`.\n in Editor', + ); + }); + + it('should render loader when entryDraft entry is undefined', () => { + const { asFragment } = render(); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should render loader when entry is fetching', () => { + const { asFragment } = render( + , + ); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should render editor interface when entry is not fetching', () => { + const { asFragment } = render( + , + ); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should call retrieveLocalBackup on mount', () => { + render( + , + ); + + expect(props.retrieveLocalBackup).toHaveBeenCalledTimes(1); + expect(props.retrieveLocalBackup).toHaveBeenCalledWith(props.collection, props.slug); + }); + + it('should create new draft on new entry when mounting', () => { + render( + , + ); + + expect(props.createEmptyDraft).toHaveBeenCalledTimes(1); + expect(props.createEmptyDraft).toHaveBeenCalledWith(props.collection); + expect(props.loadEntry).toHaveBeenCalledTimes(0); + }); + + it('should load entry on existing entry when mounting', () => { + render( + , + ); + + expect(props.createEmptyDraft).toHaveBeenCalledTimes(0); + expect(props.loadEntry).toHaveBeenCalledTimes(1); + expect(props.loadEntry).toHaveBeenCalledWith(props.collection, 'slug'); + }); + + it('should load entires when entries are not loaded when mounting', () => { + render( + , + ); + + expect(props.loadEntries).toHaveBeenCalledTimes(1); + expect(props.loadEntries).toHaveBeenCalledWith(props.collection); + }); + + it('should not load entires when entries are loaded when mounting', () => { + render( + , + ); + + expect(props.loadEntries).toHaveBeenCalledTimes(0); + }); + + it('should flush debounce createBackup, discard draft and remove exit blocker on umount', () => { + window.removeEventListener = jest.fn(); + const debounce = require('lodash/debounce'); + + const flush = debounce({}).flush; + const { unmount } = render( + , + ); + + jest.clearAllMocks(); + unmount(); + + expect(flush).toHaveBeenCalledTimes(1); + expect(props.discardDraft).toHaveBeenCalledTimes(1); + expect(window.removeEventListener).toHaveBeenCalledWith('beforeunload', expect.any(Function)); + + const callback = window.removeEventListener.mock.calls.find( + call => call[0] === 'beforeunload', + )[1]; + + const event = {}; + callback(event); + expect(event).toEqual({ returnValue: 'editor.editor.onLeavePage' }); + }); + + it('should persist backup when changed', () => { + const { rerender } = render( + , + ); + + jest.clearAllMocks(); + rerender( + , + ); + + expect(props.persistLocalBackup).toHaveBeenCalledTimes(1); + expect(props.persistLocalBackup).toHaveBeenCalledWith( + fromJS({ slug: 'slug' }), + props.collection, + fromJS([{ id: '1' }]), + ); + }); + + it('should create draft from entry when done fetching', () => { + const { rerender } = render( + , + ); + + jest.clearAllMocks(); + rerender( + , + ); + + expect(props.createDraftFromEntry).toHaveBeenCalledTimes(1); + expect(props.createDraftFromEntry).toHaveBeenCalledWith( + fromJS({ isFetching: false, data: {} }), + fromJS({}), + fromJS([{ id: '1' }]), + ); + }); +}); diff --git a/packages/netlify-cms-core/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap b/packages/netlify-cms-core/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap new file mode 100644 index 00000000..37b5d550 --- /dev/null +++ b/packages/netlify-cms-core/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap @@ -0,0 +1,45 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Editor should render editor interface when entry is not fetching 1`] = ` + + + +`; + +exports[`Editor should render loader when entry is fetching 1`] = ` + + + editor.editor.loadingEntry + + +`; + +exports[`Editor should render loader when entryDraft entry is undefined 1`] = ` + + + editor.editor.loadingEntry + + +`; + +exports[`Editor should render loader when entryDraft is null 1`] = ` + + + editor.editor.loadingEntry + + +`; diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibrary.js b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibrary.js index b4aa37ac..794ad6d7 100644 --- a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibrary.js +++ b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibrary.js @@ -118,7 +118,7 @@ class MediaLibrary extends React.Component { toTableData = files => { const tableData = files && - files.map(({ key, name, id, size, queryOrder, url, urlIsPublicPath, displayURL }) => { + files.map(({ key, name, id, size, queryOrder, url, urlIsPublicPath, displayURL, draft }) => { const ext = fileExtension(name).toLowerCase(); return { key, @@ -130,6 +130,7 @@ class MediaLibrary extends React.Component { url, urlIsPublicPath, displayURL, + draft, isImage: IMAGE_EXTENSIONS.includes(ext), isViewableImage: IMAGE_EXTENSIONS_VIEWABLE.includes(ext), }; diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCard.js b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCard.js index ee5486c8..8af223c7 100644 --- a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCard.js +++ b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCard.js @@ -27,6 +27,7 @@ const CardImageWrapper = styled.div` ${effects.checkerboard}; ${shadows.inset}; border-bottom: solid ${lengths.borderWidth} ${colors.textFieldBorder}; + position: relative; `; const CardImage = styled.img` @@ -53,6 +54,14 @@ const CardText = styled.p` line-height: 1.3 !important; `; +const DraftText = styled.p` + color: ${colors.mediaDraftText}; + background-color: ${colors.mediaDraftBackground}; + position: absolute; + padding: 8px; + border-radius: ${lengths.borderRadius} 0px ${lengths.borderRadius} 0; +`; + class MediaLibraryCard extends React.Component { render() { const { @@ -60,11 +69,13 @@ class MediaLibraryCard extends React.Component { displayURL, text, onClick, + draftText, width, margin, isPrivate, type, isViewableImage, + isDraft, } = this.props; const url = displayURL.get('url'); return ( @@ -77,7 +88,12 @@ class MediaLibraryCard extends React.Component { isPrivate={isPrivate} > - {url && isViewableImage ? : {type}} + {isDraft ? {draftText} : null} + {url && isViewableImage ? ( + + ) : ( + {type} + )} {text} @@ -96,12 +112,14 @@ MediaLibraryCard.propTypes = { displayURL: ImmutablePropTypes.map.isRequired, text: PropTypes.string.isRequired, onClick: PropTypes.func.isRequired, + draftText: PropTypes.string.isRequired, width: PropTypes.string.isRequired, margin: PropTypes.string.isRequired, isPrivate: PropTypes.bool, type: PropTypes.string, isViewableImage: PropTypes.bool.isRequired, loadDisplayURL: PropTypes.func.isRequired, + isDraft: PropTypes.bool, }; export default MediaLibraryCard; diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCardGrid.js b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCardGrid.js index 68a6bf44..3ee06d86 100644 --- a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCardGrid.js +++ b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryCardGrid.js @@ -32,6 +32,7 @@ const MediaLibraryCardGrid = ({ onLoadMore, isPaginating, paginatingMessage, + cardDraftText, cardWidth, cardMargin, isPrivate, @@ -46,6 +47,8 @@ const MediaLibraryCardGrid = ({ isSelected={isSelectedFile(file)} text={file.name} onClick={() => onAssetClick(file)} + isDraft={file.draft} + draftText={cardDraftText} width={cardWidth} margin={cardMargin} isPrivate={isPrivate} @@ -74,6 +77,7 @@ MediaLibraryCardGrid.propTypes = { type: PropTypes.string.isRequired, url: PropTypes.string, urlIsPublicPath: PropTypes.bool, + draft: PropTypes.bool, }), ).isRequired, isSelectedFile: PropTypes.func.isRequired, @@ -82,6 +86,7 @@ MediaLibraryCardGrid.propTypes = { onLoadMore: PropTypes.func.isRequired, isPaginating: PropTypes.bool, paginatingMessage: PropTypes.string, + cardDraftText: PropTypes.string.isRequired, cardWidth: PropTypes.string.isRequired, cardMargin: PropTypes.string.isRequired, loadDisplayURL: PropTypes.func.isRequired, diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryModal.js b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryModal.js index 29f6c95e..64461f50 100644 --- a/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryModal.js +++ b/packages/netlify-cms-core/src/components/MediaLibrary/MediaLibraryModal.js @@ -170,6 +170,7 @@ const MediaLibraryModal = ({ onLoadMore={handleLoadMore} isPaginating={isPaginating} paginatingMessage={t('mediaLibrary.mediaLibraryModal.loading')} + cardDraftText={t('mediaLibrary.mediaLibraryCard.draft')} cardWidth={cardWidth} cardMargin={cardMargin} isPrivate={privateUpload} diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/MediaLibraryCard.spec.js b/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/MediaLibraryCard.spec.js new file mode 100644 index 00000000..cd2f640c --- /dev/null +++ b/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/MediaLibraryCard.spec.js @@ -0,0 +1,47 @@ +import React from 'react'; +import { Map } from 'immutable'; +import MediaLibraryCard from '../MediaLibraryCard'; +import { render } from '@testing-library/react'; + +describe('MediaLibraryCard', () => { + const props = { + displayURL: Map({ url: 'url' }), + text: 'image.png', + onClick: jest.fn(), + draftText: 'Draft', + width: '100px', + margin: '10px', + isViewableImage: true, + loadDisplayURL: jest.fn(), + }; + + it('should match snapshot for non draft image', () => { + const { asFragment, queryByTestId } = render(); + + expect(queryByTestId('draft-text')).toBeNull(); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should match snapshot for draft image', () => { + const { asFragment, getByTestId } = render(); + expect(getByTestId('draft-text')).toHaveTextContent('Draft'); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should match snapshot for non viewable image', () => { + const { asFragment, getByTestId } = render( + , + ); + expect(getByTestId('card-file-icon')).toHaveTextContent('Not Viewable'); + expect(asFragment()).toMatchSnapshot(); + }); + + it('should call loadDisplayURL on mount when url is empty', () => { + const loadDisplayURL = jest.fn(); + render( + , + ); + + expect(loadDisplayURL).toHaveBeenCalledTimes(1); + }); +}); diff --git a/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/__snapshots__/MediaLibraryCard.spec.js.snap b/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/__snapshots__/MediaLibraryCard.spec.js.snap new file mode 100644 index 00000000..6b03643c --- /dev/null +++ b/packages/netlify-cms-core/src/components/MediaLibrary/__tests__/__snapshots__/MediaLibraryCard.spec.js.snap @@ -0,0 +1,211 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`MediaLibraryCard should match snapshot for draft image 1`] = ` + + .emotion-8 { + width: 100px; + height: 240px; + margin: 10px; + border: solid 2px #dfdfe3; + border-radius: 5px; + cursor: pointer; + overflow: hidden; +} + +.emotion-8:focus { + outline: none; +} + +.emotion-4 { + height: 162px; + background-color: #f2f2f2; + background-size: 16px 16px; + background-position: 0 0,8px 8px; + background-image: linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ) , linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ); + box-shadow: inset 0 0 4px rgba(68,74,87,0.3); + border-bottom: solid 2px #dfdfe3; + position: relative; +} + +.emotion-2 { + width: 100%; + height: 160px; + object-fit: contain; + border-radius: 2px 2px 0 0; +} + +.emotion-6 { + color: #798291; + padding: 8px; + margin-top: 20px; + overflow-wrap: break-word; + line-height: 1.3 !important; +} + +.emotion-0 { + color: #70399f; + background-color: #f6d8ff; + position: absolute; + padding: 8px; + border-radius: 5px 0px 5px 0; +} + +
+
+

+ Draft +

+ +
+

+ image.png +

+
+
+`; + +exports[`MediaLibraryCard should match snapshot for non draft image 1`] = ` + + .emotion-6 { + width: 100px; + height: 240px; + margin: 10px; + border: solid 2px #dfdfe3; + border-radius: 5px; + cursor: pointer; + overflow: hidden; +} + +.emotion-6:focus { + outline: none; +} + +.emotion-2 { + height: 162px; + background-color: #f2f2f2; + background-size: 16px 16px; + background-position: 0 0,8px 8px; + background-image: linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ) , linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ); + box-shadow: inset 0 0 4px rgba(68,74,87,0.3); + border-bottom: solid 2px #dfdfe3; + position: relative; +} + +.emotion-0 { + width: 100%; + height: 160px; + object-fit: contain; + border-radius: 2px 2px 0 0; +} + +.emotion-4 { + color: #798291; + padding: 8px; + margin-top: 20px; + overflow-wrap: break-word; + line-height: 1.3 !important; +} + +
+
+ +
+

+ image.png +

+
+
+`; + +exports[`MediaLibraryCard should match snapshot for non viewable image 1`] = ` + + .emotion-6 { + width: 100px; + height: 240px; + margin: 10px; + border: solid 2px #dfdfe3; + border-radius: 5px; + cursor: pointer; + overflow: hidden; +} + +.emotion-6:focus { + outline: none; +} + +.emotion-2 { + height: 162px; + background-color: #f2f2f2; + background-size: 16px 16px; + background-position: 0 0,8px 8px; + background-image: linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ) , linear-gradient( 45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6 ); + box-shadow: inset 0 0 4px rgba(68,74,87,0.3); + border-bottom: solid 2px #dfdfe3; + position: relative; +} + +.emotion-4 { + color: #798291; + padding: 8px; + margin-top: 20px; + overflow-wrap: break-word; + line-height: 1.3 !important; +} + +.emotion-0 { + width: 100%; + height: 160px; + object-fit: cover; + border-radius: 2px 2px 0 0; + padding: 1em; + font-size: 3em; +} + +
+
+
+ Not Viewable +
+
+

+ image.png +

+
+
+`; diff --git a/packages/netlify-cms-core/src/reducers/__tests__/entryDraft.spec.js b/packages/netlify-cms-core/src/reducers/__tests__/entryDraft.spec.js index ddfa00e2..a63c0416 100644 --- a/packages/netlify-cms-core/src/reducers/__tests__/entryDraft.spec.js +++ b/packages/netlify-cms-core/src/reducers/__tests__/entryDraft.spec.js @@ -2,7 +2,7 @@ import { Map, List, fromJS } from 'immutable'; import * as actions from 'Actions/entries'; import reducer from '../entryDraft'; -let initialState = Map({ +const initialState = Map({ entry: Map(), mediaFiles: List(), fieldsMetaData: Map(), @@ -62,6 +62,8 @@ describe('entryDraft reducer', () => { }); describe('persisting', () => { + let initialState; + beforeEach(() => { initialState = fromJS({ entities: { @@ -111,4 +113,95 @@ describe('entryDraft reducer', () => { expect(newState.getIn(['entry', 'isPersisting'])).toBeUndefined(); }); }); + + describe('REMOVE_DRAFT_ENTRY_MEDIA_FILE', () => { + it('should remove a media file', () => { + const actualState = reducer( + initialState.set('mediaFiles', List([{ id: '1' }, { id: '2' }])), + actions.removeDraftEntryMediaFile({ id: '1' }), + ); + + expect(actualState.toJS()).toEqual({ + entry: {}, + mediaFiles: [{ id: '2' }], + fieldsMetaData: {}, + fieldsErrors: {}, + hasChanged: false, + }); + }); + }); + + describe('ADD_DRAFT_ENTRY_MEDIA_FILE', () => { + it('should overwrite an existing media file', () => { + const actualState = reducer( + initialState.set('mediaFiles', List([{ id: '1', name: 'old' }])), + actions.addDraftEntryMediaFile({ id: '1', name: 'new' }), + ); + + expect(actualState.toJS()).toEqual({ + entry: {}, + mediaFiles: [{ id: '1', name: 'new' }], + fieldsMetaData: {}, + fieldsErrors: {}, + hasChanged: false, + }); + }); + }); + + describe('SET_DRAFT_ENTRY_MEDIA_FILES', () => { + it('should overwrite an existing media file', () => { + const actualState = reducer( + initialState, + actions.setDraftEntryMediaFiles([{ id: '1' }, { id: '2' }]), + ); + + expect(actualState.toJS()).toEqual({ + entry: {}, + mediaFiles: [{ id: '1' }, { id: '2' }], + fieldsMetaData: {}, + fieldsErrors: {}, + hasChanged: false, + }); + }); + }); + + describe('DRAFT_CREATE_FROM_LOCAL_BACKUP', () => { + it('should create draft from local backup', () => { + const localBackup = Map({ entry: fromJS(entry), mediaFiles: List([{ id: '1' }]) }); + + const actualState = reducer(initialState.set('localBackup', localBackup), { + type: actions.DRAFT_CREATE_FROM_LOCAL_BACKUP, + }); + expect(actualState.toJS()).toEqual({ + entry: { + ...entry, + newRecord: false, + }, + mediaFiles: [{ id: '1' }], + fieldsMetaData: {}, + fieldsErrors: {}, + hasChanged: true, + }); + }); + }); + + describe('DRAFT_LOCAL_BACKUP_RETRIEVED', () => { + it('should set local backup', () => { + const mediaFiles = [{ id: '1' }]; + + const actualState = reducer(initialState, actions.localBackupRetrieved(entry, mediaFiles)); + + expect(actualState.toJS()).toEqual({ + entry: {}, + mediaFiles: [], + fieldsMetaData: {}, + fieldsErrors: {}, + hasChanged: false, + localBackup: { + entry, + mediaFiles: [{ id: '1' }], + }, + }); + }); + }); }); diff --git a/packages/netlify-cms-core/src/reducers/__tests__/mediaLibrary.spec.js b/packages/netlify-cms-core/src/reducers/__tests__/mediaLibrary.spec.js new file mode 100644 index 00000000..9fba1cec --- /dev/null +++ b/packages/netlify-cms-core/src/reducers/__tests__/mediaLibrary.spec.js @@ -0,0 +1,67 @@ +import { Map } from 'immutable'; +import { ADD_MEDIA_FILES_TO_LIBRARY, mediaDeleted } from 'Actions/mediaLibrary'; +import mediaLibrary from '../mediaLibrary'; + +jest.mock('uuid/v4'); + +describe('mediaLibrary', () => { + const uuid = require('uuid/v4'); + + it('should add media files to library', () => { + uuid.mockReturnValue('newKey'); + + expect( + mediaLibrary( + Map({ + files: [ + { sha: 'old', path: 'path', key: 'key1' }, + { sha: 'sha', path: 'some-other-pas', key: 'key2' }, + ], + }), + { + type: ADD_MEDIA_FILES_TO_LIBRARY, + payload: { mediaFiles: [{ sha: 'new', path: 'path' }] }, + }, + ), + ).toEqual( + Map({ + files: [ + { sha: 'new', path: 'path', key: 'newKey' }, + { sha: 'sha', path: 'some-other-pas', key: 'key2' }, + ], + }), + ); + }); + + it('should remove media file by key', () => { + expect( + mediaLibrary( + Map({ + files: [{ key: 'key1' }, { key: 'key2' }], + }), + mediaDeleted({ key: 'key1' }), + ), + ).toEqual( + Map({ + isDeleting: false, + files: [{ key: 'key2' }], + }), + ); + }); + + it('should remove media file by id', () => { + expect( + mediaLibrary( + Map({ + files: [{ id: 'id1' }, { id: 'id2' }], + }), + mediaDeleted({ id: 'id1' }), + ), + ).toEqual( + Map({ + isDeleting: false, + files: [{ id: 'id2' }], + }), + ); + }); +}); diff --git a/packages/netlify-cms-core/src/reducers/__tests__/medias.spec.js b/packages/netlify-cms-core/src/reducers/__tests__/medias.spec.js new file mode 100644 index 00000000..a89b0c58 --- /dev/null +++ b/packages/netlify-cms-core/src/reducers/__tests__/medias.spec.js @@ -0,0 +1,25 @@ +import { Map } from 'immutable'; +import { addAssets, addAsset, removeAsset } from 'Actions/media'; +import reducer from '../medias'; + +jest.mock('ValueObjects/AssetProxy'); + +describe('medias', () => { + it('should add assets', () => { + expect(reducer(Map(), addAssets([{ public_path: 'public_path' }]))).toEqual( + Map({ public_path: { public_path: 'public_path' } }), + ); + }); + + it('should add asset', () => { + expect(reducer(Map(), addAsset({ public_path: 'public_path' }))).toEqual( + Map({ public_path: { public_path: 'public_path' } }), + ); + }); + + it('should remove asset', () => { + expect( + reducer(Map({ public_path: { public_path: 'public_path' } }), removeAsset('public_path')), + ).toEqual(Map()); + }); +}); diff --git a/packages/netlify-cms-core/src/reducers/entryDraft.js b/packages/netlify-cms-core/src/reducers/entryDraft.js index 093976d7..35a4d9f3 100644 --- a/packages/netlify-cms-core/src/reducers/entryDraft.js +++ b/packages/netlify-cms-core/src/reducers/entryDraft.js @@ -12,13 +12,16 @@ import { ENTRY_PERSIST_SUCCESS, ENTRY_PERSIST_FAILURE, ENTRY_DELETE_SUCCESS, + ADD_DRAFT_ENTRY_MEDIA_FILE, + SET_DRAFT_ENTRY_MEDIA_FILES, + REMOVE_DRAFT_ENTRY_MEDIA_FILE, + CLEAR_DRAFT_ENTRY_MEDIA_FILES, } from 'Actions/entries'; import { UNPUBLISHED_ENTRY_PERSIST_REQUEST, UNPUBLISHED_ENTRY_PERSIST_SUCCESS, UNPUBLISHED_ENTRY_PERSIST_FAILURE, } from 'Actions/editorialWorkflow'; -import { ADD_ASSET, REMOVE_ASSET } from 'Actions/media'; const initialState = Map({ entry: Map(), @@ -35,7 +38,7 @@ const entryDraftReducer = (state = Map(), action) => { return state.withMutations(state => { state.set('entry', action.payload.entry); state.setIn(['entry', 'newRecord'], false); - state.set('mediaFiles', List()); + state.set('mediaFiles', action.payload.mediaFiles || List()); // An existing entry may already have metadata. If we surfed away and back to its // editor page, the metadata will have been fetched already, so we shouldn't // clear it as to not break relation lists. @@ -56,19 +59,26 @@ const entryDraftReducer = (state = Map(), action) => { case DRAFT_CREATE_FROM_LOCAL_BACKUP: // Local Backup return state.withMutations(state => { - const backupEntry = state.get('localBackup'); + const backupDraftEntry = state.get('localBackup'); + const backupEntry = backupDraftEntry.get('entry'); state.delete('localBackup'); state.set('entry', backupEntry); state.setIn(['entry', 'newRecord'], !backupEntry.get('path')); - state.set('mediaFiles', List()); + state.set('mediaFiles', backupDraftEntry.get('mediaFiles')); state.set('fieldsMetaData', Map()); state.set('fieldsErrors', Map()); state.set('hasChanged', true); }); case DRAFT_DISCARD: return initialState; - case DRAFT_LOCAL_BACKUP_RETRIEVED: - return state.set('localBackup', fromJS(action.payload.entry)); + case DRAFT_LOCAL_BACKUP_RETRIEVED: { + const { entry, mediaFiles } = action.payload; + const newState = new Map({ + entry: fromJS(entry), + mediaFiles: List(mediaFiles), + }); + return state.set('localBackup', newState); + } case DRAFT_CHANGE_FIELD: return state.withMutations(state => { state.setIn(['entry', 'data', action.payload.field], action.payload.value); @@ -113,14 +123,28 @@ const entryDraftReducer = (state = Map(), action) => { state.set('hasChanged', false); }); - case ADD_ASSET: + case ADD_DRAFT_ENTRY_MEDIA_FILE: if (state.has('mediaFiles')) { - return state.update('mediaFiles', list => list.push(action.payload.public_path)); + return state.update('mediaFiles', list => + list.filterNot(file => file.id === action.payload.id).push({ ...action.payload }), + ); } return state; - case REMOVE_ASSET: - return state.update('mediaFiles', list => list.filterNot(path => path === action.payload)); + case SET_DRAFT_ENTRY_MEDIA_FILES: { + return state.set('mediaFiles', List(action.payload)); + } + + case REMOVE_DRAFT_ENTRY_MEDIA_FILE: + if (state.has('mediaFiles')) { + return state.update('mediaFiles', list => + list.filterNot(file => file.id === action.payload.id), + ); + } + return state; + + case CLEAR_DRAFT_ENTRY_MEDIA_FILES: + return state.set('mediaFiles', List()); default: return state; diff --git a/packages/netlify-cms-core/src/reducers/mediaLibrary.js b/packages/netlify-cms-core/src/reducers/mediaLibrary.js index b7808f38..48196ee4 100644 --- a/packages/netlify-cms-core/src/reducers/mediaLibrary.js +++ b/packages/netlify-cms-core/src/reducers/mediaLibrary.js @@ -1,5 +1,6 @@ import { Map } from 'immutable'; import uuid from 'uuid/v4'; +import { differenceBy } from 'lodash'; import { MEDIA_LIBRARY_OPEN, MEDIA_LIBRARY_CLOSE, @@ -18,6 +19,7 @@ import { MEDIA_DISPLAY_URL_REQUEST, MEDIA_DISPLAY_URL_SUCCESS, MEDIA_DISPLAY_URL_FAILURE, + ADD_MEDIA_FILES_TO_LIBRARY, } from 'Actions/mediaLibrary'; const defaultState = { @@ -127,6 +129,12 @@ const mediaLibrary = (state = Map(defaultState), action) => { map.set('isPersisting', false); }); } + case ADD_MEDIA_FILES_TO_LIBRARY: { + const { mediaFiles } = action.payload; + let updatedFiles = differenceBy(state.get('files'), mediaFiles, 'path'); + updatedFiles = [...mediaFiles.map(file => ({ ...file, key: uuid() })), ...updatedFiles]; + return state.set('files', updatedFiles); + } case MEDIA_PERSIST_FAILURE: { const privateUploadChanged = state.get('privateUpload') !== action.payload.privateUpload; if (privateUploadChanged) { @@ -143,7 +151,9 @@ const mediaLibrary = (state = Map(defaultState), action) => { return state; } return state.withMutations(map => { - const updatedFiles = map.get('files').filter(file => file.key !== key); + const updatedFiles = map + .get('files') + .filter(file => (key ? file.key !== key : file.id !== id)); map.set('files', updatedFiles); map.deleteIn(['displayURLs', id]); map.set('isDeleting', false); diff --git a/packages/netlify-cms-core/src/reducers/medias.js b/packages/netlify-cms-core/src/reducers/medias.js index c8cc0a7d..094847a2 100644 --- a/packages/netlify-cms-core/src/reducers/medias.js +++ b/packages/netlify-cms-core/src/reducers/medias.js @@ -1,10 +1,17 @@ import { Map } from 'immutable'; import { resolvePath } from 'netlify-cms-lib-util'; -import { ADD_ASSET, REMOVE_ASSET } from 'Actions/media'; +import { ADD_ASSETS, ADD_ASSET, REMOVE_ASSET } from 'Actions/media'; import AssetProxy from 'ValueObjects/AssetProxy'; const medias = (state = Map(), action) => { switch (action.type) { + case ADD_ASSETS: { + let newState = state; + action.payload.forEach(asset => { + newState = newState.set(asset.public_path, asset); + }); + return newState; + } case ADD_ASSET: return state.set(action.payload.public_path, action.payload); case REMOVE_ASSET: diff --git a/packages/netlify-cms-core/src/valueObjects/AssetProxy.js b/packages/netlify-cms-core/src/valueObjects/AssetProxy.js index 9fb592c4..0f655030 100644 --- a/packages/netlify-cms-core/src/valueObjects/AssetProxy.js +++ b/packages/netlify-cms-core/src/valueObjects/AssetProxy.js @@ -59,7 +59,7 @@ export function createAssetProxy(value, fileObj, uploaded = false, privateUpload () => new AssetProxy(value, fileObj, false), ); } else if (privateUpload) { - throw new Error('The Private Upload option is only avaible for Asset Store Integration'); + throw new Error('The Private Upload option is only available for Asset Store Integration'); } return Promise.resolve(new AssetProxy(value, fileObj, uploaded)); diff --git a/packages/netlify-cms-locales/src/de/index.js b/packages/netlify-cms-locales/src/de/index.js index 90b773c9..4759ac4e 100644 --- a/packages/netlify-cms-locales/src/de/index.js +++ b/packages/netlify-cms-locales/src/de/index.js @@ -98,6 +98,9 @@ const de = { }, }, mediaLibrary: { + mediaLibraryCard: { + draft: 'Entwurf', + }, mediaLibrary: { onDelete: 'Soll das ausgewählte Medium wirklich gelöscht werden?', }, diff --git a/packages/netlify-cms-locales/src/en/index.js b/packages/netlify-cms-locales/src/en/index.js index 50d2943c..5893013f 100644 --- a/packages/netlify-cms-locales/src/en/index.js +++ b/packages/netlify-cms-locales/src/en/index.js @@ -94,6 +94,9 @@ const en = { }, }, mediaLibrary: { + mediaLibraryCard: { + draft: 'Draft', + }, mediaLibrary: { onDelete: 'Are you sure you want to delete selected media?', }, diff --git a/packages/netlify-cms-locales/src/fr/index.js b/packages/netlify-cms-locales/src/fr/index.js index 878e2464..ce896539 100644 --- a/packages/netlify-cms-locales/src/fr/index.js +++ b/packages/netlify-cms-locales/src/fr/index.js @@ -96,6 +96,9 @@ const fr = { }, }, mediaLibrary: { + mediaLibraryCard: { + draft: 'Brouillon', + }, mediaLibrary: { onDelete: 'Voulez-vous vraiment supprimer la ressource sélectionné ?', }, diff --git a/packages/netlify-cms-ui-default/src/styles.js b/packages/netlify-cms-ui-default/src/styles.js index 98664145..b019578a 100644 --- a/packages/netlify-cms-ui-default/src/styles.js +++ b/packages/netlify-cms-ui-default/src/styles.js @@ -79,6 +79,8 @@ const colors = { controlLabel: '#7a8291', checkerboardLight: '#f2f2f2', checkerboardDark: '#e6e6e6', + mediaDraftText: colorsRaw.purple, + mediaDraftBackground: colorsRaw.purpleLight, }; const lengths = { diff --git a/packages/netlify-cms-widget-number/src/__tests__/number.spec.js b/packages/netlify-cms-widget-number/src/__tests__/number.spec.js index d4610b31..c6d8cc85 100644 --- a/packages/netlify-cms-widget-number/src/__tests__/number.spec.js +++ b/packages/netlify-cms-widget-number/src/__tests__/number.spec.js @@ -1,8 +1,6 @@ import React from 'react'; import { fromJS } from 'immutable'; -import { render, fireEvent } from 'react-testing-library'; -import 'react-testing-library/cleanup-after-each'; -import 'jest-dom/extend-expect'; +import { render, fireEvent } from '@testing-library/react'; import { NetlifyCmsWidgetNumber } from '../'; import { validateMinMax } from '../NumberControl'; diff --git a/packages/netlify-cms-widget-relation/src/__tests__/relation.spec.js b/packages/netlify-cms-widget-relation/src/__tests__/relation.spec.js index 94516bcc..d139209e 100644 --- a/packages/netlify-cms-widget-relation/src/__tests__/relation.spec.js +++ b/packages/netlify-cms-widget-relation/src/__tests__/relation.spec.js @@ -1,9 +1,7 @@ import React from 'react'; import { fromJS, Map } from 'immutable'; import { last } from 'lodash'; -import { render, fireEvent, wait } from 'react-testing-library'; -import 'react-testing-library/cleanup-after-each'; -import 'jest-dom/extend-expect'; +import { render, fireEvent, wait } from '@testing-library/react'; import { NetlifyCmsWidgetRelation } from '../'; const RelationControl = NetlifyCmsWidgetRelation.controlComponent; diff --git a/packages/netlify-cms-widget-select/src/__tests__/select.spec.js b/packages/netlify-cms-widget-select/src/__tests__/select.spec.js index b53db9d7..d40d3e6c 100644 --- a/packages/netlify-cms-widget-select/src/__tests__/select.spec.js +++ b/packages/netlify-cms-widget-select/src/__tests__/select.spec.js @@ -1,8 +1,6 @@ import React from 'react'; import { fromJS } from 'immutable'; -import { render, fireEvent } from 'react-testing-library'; -import 'react-testing-library/cleanup-after-each'; -import 'jest-dom/extend-expect'; +import { render, fireEvent } from '@testing-library/react'; import { NetlifyCmsWidgetSelect } from '../'; const SelectControl = NetlifyCmsWidgetSelect.controlComponent; diff --git a/setupTestFramework.js b/setupTestFramework.js index 1d327a9e..01aebfe4 100644 --- a/setupTestFramework.js +++ b/setupTestFramework.js @@ -1,4 +1,5 @@ /* eslint-disable emotion/no-vanilla */ +import '@testing-library/jest-dom/extend-expect'; import fetch from 'node-fetch'; import * as emotion from 'emotion'; import { createSerializer } from 'jest-emotion'; diff --git a/yarn.lock b/yarn.lock index d5c99f4e..2d50da97 100644 --- a/yarn.lock +++ b/yarn.lock @@ -726,7 +726,7 @@ "@babel/plugin-transform-react-jsx-self" "^7.0.0" "@babel/plugin-transform-react-jsx-source" "^7.0.0" -"@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.3", "@babel/runtime@^7.5.5": +"@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.3", "@babel/runtime@^7.5.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.0", "@babel/runtime@^7.6.2": version "7.7.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a" integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw== @@ -2083,6 +2083,42 @@ resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#8013f2af54a2b7d735f71560ff360d3a8176a87b" integrity sha512-vTCdPp/T/Q3oSqwHmZ5Kpa9oI7iLtGl3RQaA/NyLHikvcrPxACkkKVr/XzkSPJWXHRhKGzVvb0urJsbMlRxi1Q== +"@testing-library/dom@^6.3.0": + version "6.10.1" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.10.1.tgz#da5bf5065d3f9e484aef4cc495f4e1a5bea6df2e" + integrity sha512-5BPKxaO+zSJDUbVZBRNf9KrmDkm/EcjjaHSg3F9+031VZyPACKXlwLBjVzZxheunT9m72DoIq7WvyE457/Xweg== + dependencies: + "@babel/runtime" "^7.6.2" + "@sheerun/mutationobserver-shim" "^0.3.2" + "@types/testing-library__dom" "^6.0.0" + aria-query "3.0.0" + pretty-format "^24.9.0" + wait-for-expect "^3.0.0" + +"@testing-library/jest-dom@^4.2.3": + version "4.2.4" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-4.2.4.tgz#00dfa0cbdd837d9a3c2a7f3f0a248ea6e7b89742" + integrity sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg== + dependencies: + "@babel/runtime" "^7.5.1" + chalk "^2.4.1" + css "^2.2.3" + css.escape "^1.5.1" + jest-diff "^24.0.0" + jest-matcher-utils "^24.0.0" + lodash "^4.17.11" + pretty-format "^24.0.0" + redent "^3.0.0" + +"@testing-library/react@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-9.3.2.tgz#418000daa980dafd2d9420cc733d661daece9aa0" + integrity sha512-J6ftWtm218tOLS175MF9eWCxGp+X+cUXCpkPIin8KAXWtyZbr9CbqJ8M8QNd6spZxJDAGlw+leLG4MJWLlqVgg== + dependencies: + "@babel/runtime" "^7.6.0" + "@testing-library/dom" "^6.3.0" + "@types/testing-library__react" "^9.1.0" + "@types/babel__core@^7.1.0": version "7.1.3" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" @@ -2183,6 +2219,13 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== +"@types/react-dom@*": + version "16.9.4" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.4.tgz#0b58df09a60961dcb77f62d4f1832427513420df" + integrity sha512-fya9xteU/n90tda0s+FtN5Ym4tbgxpq/hb/Af24dvs6uYnYn+fspaxw5USlw0R8apDNwxsqumdRoCoKitckQqw== + dependencies: + "@types/react" "*" + "@types/react@*", "@types/react@^15.0.0 || ^16.0.0": version "16.9.11" resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.11.tgz#70e0b7ad79058a7842f25ccf2999807076ada120" @@ -2206,6 +2249,21 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== +"@types/testing-library__dom@*", "@types/testing-library__dom@^6.0.0": + version "6.10.0" + resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-6.10.0.tgz#590d76e3875a7c536dc744eb530cbf51b6483404" + integrity sha512-mL/GMlyQxiZplbUuFNwA0vAI3k3uJNSf6slr5AVve9TXmfLfyefNT0uHHnxwdYuPMxYD5gI/+dgAvc/5opW9JQ== + dependencies: + pretty-format "^24.3.0" + +"@types/testing-library__react@^9.1.0": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-9.1.2.tgz#e33af9124c60a010fc03a34eff8f8a34a75c4351" + integrity sha512-CYaMqrswQ+cJACy268jsLAw355DZtPZGt3Jwmmotlcu8O/tkoXBI6AeZ84oZBJsIsesozPKzWzmv/0TIU+1E9Q== + dependencies: + "@types/react-dom" "*" + "@types/testing-library__dom" "*" + "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": version "2.0.3" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" @@ -2704,6 +2762,14 @@ argparse@^1.0.7: dependencies: sprintf-js "~1.0.2" +aria-query@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w= + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + arr-diff@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" @@ -2828,6 +2894,11 @@ assign-symbols@^1.0.0: resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= +ast-types-flow@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= + astral-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" @@ -3873,7 +3944,7 @@ commander@2.15.1: resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" integrity sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag== -commander@^2.20.0, commander@^2.8.1, commander@~2.20.3: +commander@^2.11.0, commander@^2.20.0, commander@^2.8.1, commander@~2.20.3: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== @@ -4752,7 +4823,7 @@ dom-serializer@0: domelementtype "^2.0.1" entities "^2.0.0" -dom-testing-library@^4.0.0, dom-testing-library@^4.1.0: +dom-testing-library@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-4.1.1.tgz#615af61bee06db51bd8ecea60c113eba7cb49dda" integrity sha512-PUsG7aY5BJxzulDrOtkksqudRRypcVQF6d4RGAyj9xNwallOFqrNLOyg2QW2mCpFaNVPELX8hBX/wbHQtOto/A== @@ -6711,6 +6782,11 @@ indent-string@^3.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -8577,6 +8653,11 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" +min-indent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.0.tgz#cfc45c37e9ec0d8f0a0ec3dd4ef7f7c3abe39256" + integrity sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY= + minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" @@ -10005,7 +10086,7 @@ prettier@1.18.2: resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== -pretty-format@^24.0.0, pretty-format@^24.7.0, pretty-format@^24.9.0: +pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.7.0, pretty-format@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== @@ -10532,14 +10613,6 @@ react-test-renderer@^16.8.4: react-is "^16.8.6" scheduler "^0.17.0" -react-testing-library@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/react-testing-library/-/react-testing-library-7.0.1.tgz#0cf113bb53a78599f018378f6854e91a52dbf205" - integrity sha512-doQkM3/xPcIm22x9jgTkGxU8xqXg4iWvM1WwbbQ7CI5/EMk3DhloYBwMyk+Ywtta3dIAIh9sC7llXoKovf3L+w== - dependencies: - "@babel/runtime" "^7.4.3" - dom-testing-library "^4.1.0" - react-textarea-autosize@^7.1.0: version "7.1.2" resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda" @@ -10750,6 +10823,14 @@ redent@^2.0.0: indent-string "^3.0.0" strip-indent "^2.0.0" +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + redux-mock-store@^1.5.3: version "1.5.3" resolved "https://registry.yarnpkg.com/redux-mock-store/-/redux-mock-store-1.5.3.tgz#1f10528949b7ce8056c2532624f7cafa98576c6d" @@ -12162,6 +12243,13 @@ strip-indent@^2.0.0: resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -13158,6 +13246,11 @@ wait-for-expect@^1.1.1: resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.3.0.tgz#65241ce355425f907f5d127bdb5e72c412ff830c" integrity sha512-8fJU7jiA96HfGPt+P/UilelSAZfhMBJ52YhKzlmZQvKEZU2EcD1GQ0yqGB6liLdHjYtYAoGVigYwdxr5rktvzA== +wait-for-expect@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-3.0.1.tgz#ec204a76b0038f17711e575720aaf28505ac7185" + integrity sha512-3Ha7lu+zshEG/CeHdcpmQsZnnZpPj/UsG3DuKO8FskjuDbkx3jE3845H+CuwZjA2YWYDfKMU2KhnCaXMLd3wVw== + wait-on@3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-3.3.0.tgz#9940981d047a72a9544a97b8b5fca45b2170a082"